mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-20 20:01:56 +03:00
Merge branch 'development' into nt/navigation
This commit is contained in:
commit
889373aad5
@ -83,7 +83,7 @@ const DropdownButtonView = ({
|
||||
defaultIndex={selectedOptionIndex}
|
||||
defaultValue={defaultText}
|
||||
renderSeparator={() => null}
|
||||
|
||||
showsVerticalScrollIndicator={false}
|
||||
renderRow={(rowData, rowID, highlighted) =>
|
||||
renderDropdownRow(
|
||||
rowData,
|
||||
|
@ -26,7 +26,7 @@ export const InputSupportModal = ({children, visible, onClose}: InputSupportModa
|
||||
{
|
||||
Platform.select({
|
||||
ios: (
|
||||
<KeyboardAvoidingView behavior="padding">
|
||||
<KeyboardAvoidingView behavior="padding" style={{backgroundColor: 'rgba(0, 0, 0, 0.2)'}}>
|
||||
{children}
|
||||
</KeyboardAvoidingView>
|
||||
),
|
||||
|
@ -30,15 +30,14 @@ const PostCardContainer = ({
|
||||
setImageHeight,
|
||||
pageType,
|
||||
showQuickReplyModal,
|
||||
mutes,
|
||||
}) => {
|
||||
const dispatch = useAppDispatch();
|
||||
|
||||
const [_content, setContent] = useState(content);
|
||||
const [reblogs, setReblogs] = useState([]);
|
||||
const activeVotes = get(_content, 'active_votes', []);
|
||||
const [isMuted, setIsMuted] = useState(
|
||||
currentAccount.mutes && currentAccount.mutes.indexOf(content.author) > -1,
|
||||
);
|
||||
const [isMuted, setIsMuted] = useState(!!mutes && mutes.indexOf(content.author) > -1);
|
||||
|
||||
useEffect(() => {
|
||||
let isCancelled = false;
|
||||
|
@ -123,7 +123,12 @@ const PostCardView = ({
|
||||
<Icon style={styles.pushPinIcon} size={20} name="pin" iconType="MaterialCommunityIcons" />
|
||||
)}
|
||||
<View style={styles.dropdownWrapper}>
|
||||
<PostDropdown pageType={pageType} content={content} fetchPost={fetchPost} />
|
||||
<PostDropdown
|
||||
pageType={pageType}
|
||||
content={content}
|
||||
fetchPost={fetchPost}
|
||||
isMuted={isMuted}
|
||||
/>
|
||||
</View>
|
||||
</View>
|
||||
<View style={styles.postBodyWrapper}>
|
||||
|
@ -6,7 +6,7 @@ import { injectIntl } from 'react-intl';
|
||||
import get from 'lodash/get';
|
||||
|
||||
// Services and Actions
|
||||
import { pinCommunityPost, profileUpdate, reblog } from '../../../providers/hive/dhive';
|
||||
import { followUser, getRelationship, ignoreUser, pinCommunityPost, profileUpdate, reblog, unfollowUser } from '../../../providers/hive/dhive';
|
||||
import { addBookmark, addReport } from '../../../providers/ecency/ecency';
|
||||
import { toastNotification, setRcOffer, showActionModal } from '../../../redux/actions/uiAction';
|
||||
import { openPinCodeModal } from '../../../redux/actions/applicationActions';
|
||||
@ -23,6 +23,7 @@ import { getPostUrl } from '../../../utils/post';
|
||||
import PostDropdownView from '../view/postDropdownView';
|
||||
import { OptionsModal } from '../../atoms';
|
||||
import { updateCurrentAccount } from '../../../redux/actions/accountAction';
|
||||
import showLoginAlert from '../../../utils/showLoginAlert';
|
||||
|
||||
/*
|
||||
* Props Name Description Value
|
||||
@ -67,7 +68,7 @@ class PostDropdownContainer extends PureComponent {
|
||||
}
|
||||
};
|
||||
|
||||
_initOptions = ({ content, currentAccount, pageType, subscribedCommunities } = this.props) => {
|
||||
_initOptions = ({ content, currentAccount, pageType, subscribedCommunities, isMuted } = this.props) => {
|
||||
//check if post is owned by current user or not, if so pinned or not
|
||||
const _canUpdateBlogPin = !!pageType && !!content && !!currentAccount && currentAccount.name === content.author
|
||||
const _isPinnedInProfile = !!content && content.stats?.is_pinned_blog;
|
||||
@ -82,6 +83,7 @@ class PostDropdownContainer extends PureComponent {
|
||||
return role;
|
||||
}, false) : false;
|
||||
const _isPinnedInCommunity = !!content && content.stats?.is_pinned;
|
||||
|
||||
|
||||
//cook options list based on collected flags
|
||||
const options = OPTIONS.filter((option) => {
|
||||
@ -104,9 +106,10 @@ class PostDropdownContainer extends PureComponent {
|
||||
|
||||
// Component Functions
|
||||
_handleOnDropdownSelect = async (index) => {
|
||||
const { content, dispatch, intl, navigation, } = this.props;
|
||||
const {currentAccount, content, dispatch, intl, navigation, isMuted } = this.props as any;
|
||||
const username = content.author;
|
||||
const isOwnProfile = !username || currentAccount.username === username;
|
||||
const { options } = this.state;
|
||||
console.log('content : ', content);
|
||||
|
||||
switch (options[index]) {
|
||||
case 'copy':
|
||||
@ -177,13 +180,72 @@ class PostDropdownContainer extends PureComponent {
|
||||
},
|
||||
});
|
||||
break;
|
||||
case 'mute':
|
||||
!isOwnProfile && this._muteUser();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
_muteUser = () => {
|
||||
const { currentAccount, pinCode, dispatch, intl, content, isLoggedIn, navigation } = this.props as any;
|
||||
const username = content.author;
|
||||
const follower = currentAccount.name;
|
||||
const following = username;
|
||||
|
||||
if(!isLoggedIn){
|
||||
showLoginAlert({navigation, intl});
|
||||
return;
|
||||
}
|
||||
ignoreUser(currentAccount, pinCode, {
|
||||
follower,
|
||||
following,
|
||||
})
|
||||
.then(() => {
|
||||
const curMutes = currentAccount.mutes || [];
|
||||
if (curMutes.indexOf(username) < 0) {
|
||||
//check to avoid double entry corner case
|
||||
currentAccount.mutes = [username, ...curMutes];
|
||||
}
|
||||
dispatch(updateCurrentAccount(currentAccount));
|
||||
dispatch(
|
||||
toastNotification(
|
||||
intl.formatMessage({
|
||||
id: 'alert.success_mute',
|
||||
}),
|
||||
),
|
||||
);
|
||||
})
|
||||
.catch((err) => {
|
||||
this._profileActionDone({ error: err });
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
_profileActionDone = ({ error = null }) => {
|
||||
const { intl, dispatch, content } = this.props as any;
|
||||
|
||||
this.setState({
|
||||
isProfileLoading: false,
|
||||
});
|
||||
if (error) {
|
||||
if (error.jse_shortmsg && error.jse_shortmsg.includes('wait to transact')) {
|
||||
//when RC is not enough, offer boosting account
|
||||
dispatch(setRcOffer(true));
|
||||
} else {
|
||||
Alert.alert(
|
||||
intl.formatMessage({
|
||||
id: 'alert.fail',
|
||||
}),
|
||||
error.message || error.toString(),
|
||||
);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
_share = () => {
|
||||
const { content } = this.props;
|
||||
const { content } = this.props as any;
|
||||
const postUrl = getPostUrl(get(content, 'url'));
|
||||
|
||||
Share.share({
|
||||
@ -192,7 +254,7 @@ class PostDropdownContainer extends PureComponent {
|
||||
};
|
||||
|
||||
_report = (url) => {
|
||||
const { dispatch, intl } = this.props;
|
||||
const { dispatch, intl } = this.props as any;
|
||||
|
||||
const _onConfirm = () => {
|
||||
addReport('content', url)
|
||||
@ -236,8 +298,11 @@ class PostDropdownContainer extends PureComponent {
|
||||
};
|
||||
|
||||
_addToBookmarks = () => {
|
||||
const { content, dispatch, intl } = this.props;
|
||||
|
||||
const { content, dispatch, intl, isLoggedIn, navigation } = this.props as any;
|
||||
if(!isLoggedIn){
|
||||
showLoginAlert({navigation, intl});
|
||||
return;
|
||||
}
|
||||
addBookmark(get(content, 'author'), get(content, 'permlink'))
|
||||
.then(() => {
|
||||
dispatch(
|
||||
@ -260,7 +325,11 @@ class PostDropdownContainer extends PureComponent {
|
||||
};
|
||||
|
||||
_reblog = () => {
|
||||
const { content, currentAccount, dispatch, intl, isLoggedIn, pinCode } = this.props;
|
||||
const { content, currentAccount, dispatch, intl, isLoggedIn, pinCode, navigation } = this.props as any;
|
||||
if(!isLoggedIn){
|
||||
showLoginAlert({navigation, intl});
|
||||
return;
|
||||
}
|
||||
if (isLoggedIn) {
|
||||
reblog(currentAccount, pinCode, content.author, get(content, 'permlink', ''))
|
||||
.then(() => {
|
||||
@ -344,7 +413,7 @@ class PostDropdownContainer extends PureComponent {
|
||||
}
|
||||
|
||||
_redirectToReply = () => {
|
||||
const { content, fetchPost, isLoggedIn, navigation } = this.props;
|
||||
const { content, fetchPost, isLoggedIn, navigation } = this.props as any;
|
||||
|
||||
if (isLoggedIn) {
|
||||
navigation.navigate({
|
||||
@ -360,7 +429,7 @@ class PostDropdownContainer extends PureComponent {
|
||||
};
|
||||
|
||||
_redirectToPromote = (routeName, from, redeemType) => {
|
||||
const { content, isLoggedIn, navigation, dispatch, isPinCodeOpen } = this.props;
|
||||
const { content, isLoggedIn, navigation, dispatch, isPinCodeOpen } = this.props as any;
|
||||
const params = {
|
||||
from,
|
||||
permlink: `${get(content, 'author')}/${get(content, 'permlink')}`,
|
||||
@ -372,7 +441,7 @@ class PostDropdownContainer extends PureComponent {
|
||||
openPinCodeModal({
|
||||
navigateTo: routeName,
|
||||
navigateParams: params,
|
||||
}),
|
||||
} as any)
|
||||
);
|
||||
} else if (isLoggedIn) {
|
||||
navigation.navigate({
|
||||
@ -387,9 +456,10 @@ class PostDropdownContainer extends PureComponent {
|
||||
intl,
|
||||
currentAccount: { name },
|
||||
content,
|
||||
isMuted
|
||||
} = this.props;
|
||||
const { options } = this.state;
|
||||
|
||||
|
||||
return (
|
||||
<Fragment>
|
||||
<PostDropdownView
|
||||
|
@ -43,7 +43,8 @@ const postsListContainer = ({
|
||||
? state.posts.feedPosts
|
||||
: state.posts.otherPosts
|
||||
});
|
||||
|
||||
const mutes = useSelector((state) => state.account.currentAccount.mutes);
|
||||
|
||||
const scrollPosition = useSelector((state) => {
|
||||
return isFeedScreen
|
||||
? state.posts.feedScrollPosition
|
||||
@ -76,7 +77,6 @@ const postsListContainer = ({
|
||||
|
||||
}, [scrollPosition])
|
||||
|
||||
|
||||
const _setImageHeightInMap = (mapKey:string, height:number) => {
|
||||
if(mapKey && height){
|
||||
setImageHeights(imageHeights.set(mapKey, height));
|
||||
@ -106,17 +106,19 @@ const postsListContainer = ({
|
||||
|
||||
|
||||
const _renderItem = ({ item, index }:{item:any, index:number}) => {
|
||||
const e = [];
|
||||
|
||||
const e = [] as any;
|
||||
|
||||
if (index % 3 === 0) {
|
||||
const ix = index / 3 - 1;
|
||||
if (promotedPosts[ix] !== undefined) {
|
||||
const p = promotedPosts[ix];
|
||||
if (get(p, 'author', null) && posts && posts.filter((x) => x.permlink === p.permlink).length <= 0) {
|
||||
let isMuted = mutes && mutes.indexOf(p.author) > -1;
|
||||
|
||||
if (!isMuted && get(p, 'author', null) && posts && posts.filter((x) => x.permlink === p.permlink).length <= 0) {
|
||||
|
||||
//get image height from cache if available
|
||||
const localId = p.author + p.permlink;
|
||||
const imgHeight = imageHeights.get(localId)
|
||||
const imgHeight = imageHeights.get(localId);
|
||||
|
||||
e.push(
|
||||
<PostCard
|
||||
@ -127,12 +129,15 @@ const postsListContainer = ({
|
||||
pageType={pageType}
|
||||
setImageHeight = {_setImageHeightInMap}
|
||||
showQuickReplyModal={showQuickReplyModal}
|
||||
/>,
|
||||
mutes={mutes}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (get(item, 'author', null)) {
|
||||
|
||||
let isMuted = mutes && mutes.indexOf(item.author) > -1;
|
||||
if (!isMuted && get(item, 'author', null)) {
|
||||
//get image height from cache if available
|
||||
const localId = item.author + item.permlink;
|
||||
const imgHeight = imageHeights.get(localId)
|
||||
@ -146,13 +151,13 @@ const postsListContainer = ({
|
||||
setImageHeight = {_setImageHeightInMap}
|
||||
pageType={pageType}
|
||||
showQuickReplyModal={showQuickReplyModal}
|
||||
mutes={mutes}
|
||||
/>,
|
||||
);
|
||||
}
|
||||
return e;
|
||||
};
|
||||
|
||||
|
||||
|
||||
return (
|
||||
<ThemeContainer>
|
||||
{({ isDarkTheme }) => (
|
||||
|
@ -54,4 +54,8 @@ export default EStyleSheet.create({
|
||||
textButton: {
|
||||
justifyContent: 'center',
|
||||
},
|
||||
iconBtn: {
|
||||
borderRadius: 0,
|
||||
width: 50,
|
||||
},
|
||||
});
|
||||
|
@ -4,11 +4,13 @@ import { View, Text } from 'react-native';
|
||||
// Constants
|
||||
|
||||
// Components
|
||||
import EStyleSheet from 'react-native-extended-stylesheet';
|
||||
import { DropdownButton } from '../../dropdownButton';
|
||||
import { TextButton } from '../../buttons';
|
||||
import { ToggleSwitch } from '../../toggleSwitch';
|
||||
// Styles
|
||||
import styles from './settingsItemStyles';
|
||||
import IconButton from '../../iconButton';
|
||||
|
||||
class SettingsItemView extends PureComponent {
|
||||
/* Props
|
||||
@ -73,6 +75,17 @@ class SettingsItemView extends PureComponent {
|
||||
/>
|
||||
);
|
||||
|
||||
case 'icon':
|
||||
return (
|
||||
<IconButton
|
||||
onPress={() => handleOnButtonPress(actionType)}
|
||||
name="trash-bin-outline"
|
||||
size={24}
|
||||
color={EStyleSheet.value('$primaryRed')}
|
||||
style={styles.iconBtn}
|
||||
/>
|
||||
);
|
||||
|
||||
default:
|
||||
return (
|
||||
<TextButton
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Info ureueng galak",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "batëu",
|
||||
"login": "TAMOÉNG",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Palèng galak",
|
||||
"load_error": "Han lëupah pëutamong ata lam galak",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Hana uréung pakék",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "تم فتح البريد الإلكتروني بنجاح",
|
||||
"feedback_fail": "لا يمكن فتح عميل البريد الإلكتروني",
|
||||
"server_fail": "الخادم غير متوفر",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "معلومات عن المصوتين",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "إلغاء",
|
||||
"login": "تسجيل الدخول",
|
||||
"steemconnect_description": "إذا كنت لا ترغب في إبقاء كلمة المرور مشفرة وحفظها على جهازك، يمكنك استخدام Hivesigner.",
|
||||
"steemconnect_fee_description": "معلومات"
|
||||
"steemconnect_fee_description": "معلومات",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "إنشاء حساب",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "تأكيد التقرير!",
|
||||
"confirm_report_body": "هل أنت متأكد من أنك تريد الإبلاغ؟"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "المفضلات",
|
||||
"load_error": "لا يمكن تحميل المفضلات",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "لا يوجد أي مستخدم حاليا",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "E-poçt uğurla açıldı",
|
||||
"feedback_fail": "E-poçt sifarişçisi açıla bilmədi",
|
||||
"server_fail": "Server mövcud deyil",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Səsverənlər",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "imtina",
|
||||
"login": "GİRİŞ",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "məlumat"
|
||||
"steemconnect_fee_description": "məlumat",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Qeydiyyatdan keç",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Sevimlilər",
|
||||
"load_error": "Sevimlilər yüklənilə bilmədi",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Heç bir istifadəçi yoxdur",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Емайл успешно отворен",
|
||||
"feedback_fail": "Емайл клиентът не може да се отвори",
|
||||
"server_fail": "Мрежата не е достъпна",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Информация за гласувалите",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "Отказ",
|
||||
"login": "ВХОД",
|
||||
"steemconnect_description": "Ако не искате да запазите паролата си криптирана и съхранена на устройството си, можете да използвате Steemconnect.",
|
||||
"steemconnect_fee_description": "информация"
|
||||
"steemconnect_fee_description": "информация",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Регистрация",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Одобри доклад!",
|
||||
"confirm_report_body": "Сигурен ли сте че искате да докладвате?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Любими",
|
||||
"load_error": "Не може да зареди любими",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Съществуващ потребител",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "ইমেল সফলভাবে খোলা",
|
||||
"feedback_fail": "ইমেল ক্লায়েন্ট খুলতে পারে নি",
|
||||
"server_fail": "সার্ভার এভেইলএবেল নেই",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "ভোটারদের তথ্য",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "বাতিল করুন",
|
||||
"login": "প্রবেশ করুন",
|
||||
"steemconnect_description": "আপনি যদি নিজের পাসওয়ার্ডটি এনক্রিপ্ট করা এবং আপনার ডিভাইসে সংরক্ষণ করতে না চান তবে আপনি হাইভসাইনার ব্যবহার করতে পারেন।",
|
||||
"steemconnect_fee_description": "তথ্য"
|
||||
"steemconnect_fee_description": "তথ্য",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "সাইন আপ",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "প্রিয়",
|
||||
"load_error": "পছন্দসই লোড করা যায়নি",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "কোন বিদ্যমান ব্যবহারকারী",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email je uspješno otvoren",
|
||||
"feedback_fail": "Klijent nije mogao otvoriti email",
|
||||
"server_fail": "Server nije dostupan",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Informacije o glasačima",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "otkaži",
|
||||
"login": "PRIJAVI SE",
|
||||
"steemconnect_description": "Ako ne želite da lozinka ostane šifrovana i sačuvana na uređaju, možete koristiti Hivesigner.",
|
||||
"steemconnect_fee_description": "informacije"
|
||||
"steemconnect_fee_description": "informacije",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Registrujte se",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Potvrdi prijavu!",
|
||||
"confirm_report_body": "Jeste li sigurni da želite izvještaj?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favoriti",
|
||||
"load_error": "Nije moguće učitati favorite",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Nema postojećeg korisnika",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "E-Mail erfolgreich geöffnet",
|
||||
"feedback_fail": "E-Mail Client konnte nicht geöffnet werden",
|
||||
"server_fail": "Server nicht verfügbar",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voter-Informationen",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "Abbrechen",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "Wenn du dein Passwort nicht verschlüsselt auf deinem Gerät gespeichert haben möchtest, kannst du Hivesigner verwenden.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Registrieren",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favoriten",
|
||||
"load_error": "Favoriten können nicht geladen werden",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Kein vorhandener Benutzer",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title":"Confirm Report!",
|
||||
"confirm_report_body":"Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,8 +591,8 @@
|
||||
"unpin-blog":"Unpin from blog",
|
||||
"pin-community":"Pin to community",
|
||||
"unpin-community":"Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Correo electrónico abierto con éxito",
|
||||
"feedback_fail": "Ocurrió un error al intentar abrir el cliente del correo electrónico",
|
||||
"server_fail": "Servidor no disponible",
|
||||
"show_imgs": "Mostrar imágenes"
|
||||
"show_imgs": "Mostrar imágenes",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Información de votantes",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancelar",
|
||||
"login": "ACCEDER",
|
||||
"steemconnect_description": "Si no desea mantener su contraseña encriptada y guardada en su dispositivo, puede usar Hivesigner.",
|
||||
"steemconnect_fee_description": "info."
|
||||
"steemconnect_fee_description": "info.",
|
||||
"not_loggedin_alert": "No conectado",
|
||||
"not_loggedin_alert_desc": "Inicia tu sesión primero"
|
||||
},
|
||||
"register": {
|
||||
"button": "Registrarse",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "¡Confirmar Reporte!",
|
||||
"confirm_report_body": "¿Estás seguro de que quieres reportar?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favoritos",
|
||||
"load_error": "No se pudo cargar favoritos",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Desanclar del blog",
|
||||
"pin-community": "Anclar a la comunidad",
|
||||
"unpin-community": "Desanclar de la comunidad",
|
||||
"edit-history": "Editar historial"
|
||||
"edit-history": "Editar historial",
|
||||
"mute": "Silenciar / Bloquear"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Usuario no existe",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email edukalt avatud",
|
||||
"feedback_fail": "Emaili rakendus ei avanenud",
|
||||
"server_fail": "Server pole kättesaadav",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Hääletaja info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "tühista",
|
||||
"login": "LOGI SISSE",
|
||||
"steemconnect_description": "Kui sa ei soovi hoida oma parooli krüpteerituna ja salvestatuna oma seadmes, kasuta Hivesigner'it.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Loo konto",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Lemmikud",
|
||||
"load_error": "Lemmikute laadimine ebaõnnestus",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Kasutaja ei eksisteeri",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "ایمیل با موفقیت باز شد",
|
||||
"feedback_fail": "سرویس دهنده ایمیل نمی تواند باز شود",
|
||||
"server_fail": "سرور در دسترس نیست",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "اطلاعات رأی دهندگان",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "انصراف",
|
||||
"login": "ورود به سیستم",
|
||||
"steemconnect_description": "اگر نمی خواهید رمز عبورتان رمزنگاری و در دستگاهتان ذخیره شود، میتوانید از Hivesigner استفاده کنید.",
|
||||
"steemconnect_fee_description": "اطلاعات"
|
||||
"steemconnect_fee_description": "اطلاعات",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "ثبت نام",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "برگزیدهها",
|
||||
"load_error": "باز کردن علاقه مندی ها مقدور نیست",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "کاربری موجود نیست",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Sähköposti avattu onnistuneesti",
|
||||
"feedback_fail": "Sähköpostipalvelin alhaalla",
|
||||
"server_fail": "Ei yhteyttä palvelimeen",
|
||||
"show_imgs": "Näytä kuvat"
|
||||
"show_imgs": "Näytä kuvat",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Äänestystiedot",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "peruuta",
|
||||
"login": "KIRJAUDU SISÄÄN",
|
||||
"steemconnect_description": "Jos et halua säilyttää kryptattua salasanaa laitteessasi, voit käyttää Hivesigneriä.",
|
||||
"steemconnect_fee_description": "tietoa"
|
||||
"steemconnect_fee_description": "tietoa",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Luo tili",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Vahvista ilmianto!",
|
||||
"confirm_report_body": "Haluatko varmasti tehdä ilmiannon?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Suosikit",
|
||||
"load_error": "Suosikkeja ei voitu ladata",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Irrota blogista",
|
||||
"pin-community": "Kiinnitä yhteisölle",
|
||||
"unpin-community": "Poista kiinnitys yhteisöstä",
|
||||
"edit-history": "Muokkaushistoria"
|
||||
"edit-history": "Muokkaushistoria",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Käyttäjää ei ole",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Matagumpay na nabuksan ang email",
|
||||
"feedback_fail": "Hindi mabuksan ang email client",
|
||||
"server_fail": "Hindi magagamit ang server",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Impormasyon sa mga botante",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "kansel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "Kung ayaw mong itago ang encrypted password mo sa device mo, gamitin ang Hivesigner.",
|
||||
"steemconnect_fee_description": "impormasyon"
|
||||
"steemconnect_fee_description": "impormasyon",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sumali",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Mga Paborito",
|
||||
"load_error": "Hindi mai-load ang mga paborito",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Walang makita na user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "E-mail ouvert avec succès",
|
||||
"feedback_fail": "Le client e-mail n'a pas pu être ouvert",
|
||||
"server_fail": "Serveur indisponible",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Info des votants",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "annuler",
|
||||
"login": "CONNEXION",
|
||||
"steemconnect_description": "Si vous ne voulez pas garder votre mot de passe chiffré et enregistré sur votre appareil, vous pouvez utiliser Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Créer un compte",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favoris",
|
||||
"load_error": "Impossible de charger les favoris",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Utilisateur inexistant",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "האימייל נפתח בהצלחה",
|
||||
"feedback_fail": "דואר הלקוח אינו יכול להיפתח",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "פרטי המצביעים",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "בטל\\י",
|
||||
"login": "כניסה",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "מועדפים",
|
||||
"load_error": "לא ניתן לעלות מועדפים",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "המשתמש אינו קיים",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "ईमेल सफलतापूर्वक खुला",
|
||||
"feedback_fail": "ईमेल क्लाइंट नहीं खोल सका",
|
||||
"server_fail": "Server उपलब्ध नहीं है",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "मतदाताओं की जानकारी",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "रद्द करें",
|
||||
"login": "लॉगिन करें",
|
||||
"steemconnect_description": "यदि आप अपने पासवर्ड को अपने डिवाइस पर एन्क्रिप्ट और सहेज कर नहीं रखना चाहते हैं, तो आप हाइवसाईनरका उपयोग कर सकते हैं।",
|
||||
"steemconnect_fee_description": "जानकारी"
|
||||
"steemconnect_fee_description": "जानकारी",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "साइन अप करें",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "रिपोर्ट की पुष्टि करें!",
|
||||
"confirm_report_body": "क्या आप वाकई रिपोर्ट चाहते हैं?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "पसंदीदा",
|
||||
"load_error": "पसंदीदा भर ना सका",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "कोई विद्यमान उपयोगकर्ता नहीं",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Informacije o glasačima",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "otkaži",
|
||||
"login": "PRIJAVA",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favoriti",
|
||||
"load_error": "Nije bilo moguće učitati favorite",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Ne postojeći korisnik",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email sikeresen megnyitva",
|
||||
"feedback_fail": "A levelezőprogram nem nyitható meg",
|
||||
"server_fail": "A szerver nem elérhető",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Infó a szavazókról",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "visszavonom",
|
||||
"login": "BEJELENTKEZÉS",
|
||||
"steemconnect_description": "Ha nem szeretnéd a jelszavad a készülékeden elmentve tárolni, használhatod a Hivesigner-t.",
|
||||
"steemconnect_fee_description": "infó"
|
||||
"steemconnect_fee_description": "infó",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Regisztráció",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Kedvencek",
|
||||
"load_error": "Nem sikerült betölteni a kedvenceket",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Nem létező felhasználó",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email berhasil dibuka",
|
||||
"feedback_fail": "Klien email tidak bisa dibuka",
|
||||
"server_fail": "Server tidak tersedia",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Info Pemilih",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "batal",
|
||||
"login": "MASUK",
|
||||
"steemconnect_description": "Jika Anda tidak ingin menyimpan kata sandi Anda dienkripsi dan disimpan di perangkat Anda, Anda dapat menggunakan Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Daftar",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Konfirmasi Laporan!",
|
||||
"confirm_report_body": "Yakin mau membuat laporan?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorit",
|
||||
"load_error": "Tidak dapat menampilkan favorit",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Lepas sematan di blog",
|
||||
"pin-community": "Semat untuk komunitas",
|
||||
"unpin-community": "Lepaskan sematan dari komunitas",
|
||||
"edit-history": "Riwayat Penyuntingan"
|
||||
"edit-history": "Riwayat Penyuntingan",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Tidak ada pengguna yang ada",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email inviata con successo",
|
||||
"feedback_fail": "Impossibile aprire il client email",
|
||||
"server_fail": "Server non disponibile",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Info Votanti",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancella",
|
||||
"login": "ACCEDI",
|
||||
"steemconnect_description": "Se non vuoi mantenere la tua password crittografata e salvata sul tuo dispositivo, puoi usare Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Registrati",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Preferiti",
|
||||
"load_error": "Impossibile caricare i preferiti",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Utente non esistente",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "メールを開くことができました",
|
||||
"feedback_fail": "メールを開くことができませんでした",
|
||||
"server_fail": "サーバーは利用できません",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "ヴォート情報",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "キャンセル",
|
||||
"login": "ログイン",
|
||||
"steemconnect_description": "端末に暗号化したパスワードを保存したくない場合、Hivesignerを利用できます。",
|
||||
"steemconnect_fee_description": "お知らせ"
|
||||
"steemconnect_fee_description": "お知らせ",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "サインアップ",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "お気に入り",
|
||||
"load_error": "お気に入りを読み込めませんでした",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "ユーザーは存在しません",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Imayl yeldi mebla ugur",
|
||||
"feedback_fail": "Amsaɣ imayl ur yezmir ara ad yettwaldi",
|
||||
"server_fail": "Ulac aqeddac",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Isallen ɣef yinefranen",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "sefsex",
|
||||
"login": "TUQQNA",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Ismenyifen",
|
||||
"load_error": "Ur zmiren ara ad ttwasalin yismenyifen",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Ulac amseqdac",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "이메일 클라이언트가 성공적으로 열렸습니다",
|
||||
"feedback_fail": "이메일 클라이언트를 열지 못했습니다",
|
||||
"server_fail": "서버를 이용할 수 없습니다.",
|
||||
"show_imgs": "이미지 표시"
|
||||
"show_imgs": "이미지 표시",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "투표자 정보",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "취소",
|
||||
"login": "로그인",
|
||||
"steemconnect_description": "암호화된 비밀번호를 기기에 저장하고 싶지 않다면, HiveSigner를 사용하시면 됩니다",
|
||||
"steemconnect_fee_description": "정보"
|
||||
"steemconnect_fee_description": "정보",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "가입",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "신고 확인!",
|
||||
"confirm_report_body": "정말 신고하시겠습니까?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "좋아하는 저자",
|
||||
"load_error": "좋아하는 저자 목록을 불러올 수 없습니다.",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "맨 위 고정 해제",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "편집 내역"
|
||||
"edit-history": "편집 내역",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "존재하지 않는 사용자입니다",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Epeyam bi serkeftî vebû",
|
||||
"feedback_fail": "Stînera epeyamê venebû",
|
||||
"server_fail": "Rajekar ne li berdest e",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Agahiya Dengdêran",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "Betal",
|
||||
"login": "TÊKEVÊ",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Bijardeyên Min",
|
||||
"load_error": "Bijarde bar nebûn",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Bikarhêner tune ye",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "токтотуу",
|
||||
"login": "ЛОГИН",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "маалымат"
|
||||
"steemconnect_fee_description": "маалымат",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Катталуу",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Тандалгандар",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "El. laiškas sėkmingai atidarytas",
|
||||
"feedback_fail": "El. pašto atidaryti nepavyko",
|
||||
"server_fail": "Serveris neprieinamas",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Balsuotojo Informacija",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "atšaukti",
|
||||
"login": "PRISIJUNGTI",
|
||||
"steemconnect_description": "Jei nenorite, kad jūsų slaptažodis būtų įrašomas į jūsų įrenginį, galite naudoti Hivesighner.",
|
||||
"steemconnect_fee_description": "informacija"
|
||||
"steemconnect_fee_description": "informacija",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Užsiregistruoti",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Patvirtinkite skundą!",
|
||||
"confirm_report_body": "Ar tikrai norite pateikti skundą?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Mėgstamiausi",
|
||||
"load_error": "Nepavyko pakrauti mėgstamiausių",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Atsegti nuo tinklaraščio",
|
||||
"pin-community": "Prisegti prie bendruomenės",
|
||||
"unpin-community": "Atsegti nuo bendruomenės",
|
||||
"edit-history": "Redaguoti istoriją"
|
||||
"edit-history": "Redaguoti istoriją",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Nėra tokio vartotojo",
|
||||
@ -675,8 +684,8 @@
|
||||
"title": "Sustiprink paskyrą",
|
||||
"desc": "30 dienų delegacijos padidins jūsų balsų kiekį ir paspartins socialinę veiklą ir suteiks jums daugiau veiksmų su resursų kreditais."
|
||||
},
|
||||
"confirm_purchase": "Confirm Purchase @{username}",
|
||||
"confirm_purchase_summary": "Buying {points} for {username} at {price}"
|
||||
"confirm_purchase": "Patvirtinkite pirkinį{username}",
|
||||
"confirm_purchase_summary": "{points} pirkimas {username} už {price}"
|
||||
},
|
||||
"free_estm": {
|
||||
"title": "Nemokami taškai",
|
||||
@ -830,7 +839,7 @@
|
||||
"qr_scan": "QR Scan",
|
||||
"open": "Atidaryti URL",
|
||||
"detected_url": "Aptiktas URL",
|
||||
"unsupported_alert_title": "Unsupported URL!",
|
||||
"unsupported_alert_title": "Nepalaikomas URL!",
|
||||
"unsupported_alert_desc": "Please scan a valid ecency url."
|
||||
},
|
||||
"history": {
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "E-mel berjaya dibuka",
|
||||
"feedback_fail": "Klien e-mel tidak dapat dibuka",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Info pengundi",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "batal",
|
||||
"login": "LOG MASUK",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Daftar",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Kegemaran",
|
||||
"load_error": "Tidak dapat cari kegemaran",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Pengguna tidak wujud",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Stemmers informatie",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "annuleren",
|
||||
"login": "INLOGGEN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorieten",
|
||||
"load_error": "Kan favorieten niet laden",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Geen bestaande gebruiker",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email don open successfully",
|
||||
"feedback_fail": "Email no gree open",
|
||||
"server_fail": "Server no dey",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "People Wey Vote informate",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you no wan make ur key dey safe and make we put am for ur fone, you fit use HiveSigner.",
|
||||
"steemconnect_fee_description": "informate"
|
||||
"steemconnect_fee_description": "informate",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Register for here",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Favorites no gree load",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "The person no exist",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "E-mail wysłany pomyślnie",
|
||||
"feedback_fail": "Błąd klienta poczty e-mail",
|
||||
"server_fail": "Serwer niedostępny",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Informacje o głosujących",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "anuluj",
|
||||
"login": "ZALOGUJ SIĘ",
|
||||
"steemconnect_description": "Jeśli nie chcesz zachować swojego hasła zaszyfrowanego i zapisanego na swoim urządzeniu, możesz użyć Hivesignera.",
|
||||
"steemconnect_fee_description": "informacja"
|
||||
"steemconnect_fee_description": "informacja",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Zapisz się",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Ulubione",
|
||||
"load_error": "Nie można załadować ulubionych",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Brak istniejącego użytkownika",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email aberto com sucesso",
|
||||
"feedback_fail": "Não se pôde abrir o cliente de e-mail",
|
||||
"server_fail": "Servidor não disponível",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Informação de eleitores",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancelar",
|
||||
"login": "ENTRAR",
|
||||
"steemconnect_description": "Se você não quiser manter sua senha criptográfica salva no dispositivo, você pode usar o Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Cadastre-se",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirmar Relatório!",
|
||||
"confirm_report_body": "Tem certeza que quer denunciar?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favoritos",
|
||||
"load_error": "Não foi possível carregar os favoritos",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Desafixar do blog",
|
||||
"pin-community": "Fixar na comunidade",
|
||||
"unpin-community": "Desafixar da comunidade",
|
||||
"edit-history": "Histórico de Edição"
|
||||
"edit-history": "Histórico de Edição",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Usuário não existe",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "E-mail deschis cu succes",
|
||||
"feedback_fail": "Email-ul nu a putut fi accesat",
|
||||
"server_fail": "Serverul este indisponibil",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Detalii votanți",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "anulează",
|
||||
"login": "AUTENTIFICARE",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorite",
|
||||
"load_error": "Nu s-au putut încărca favoritele",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Utilizator inexistent",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Письмо успешно отправлено",
|
||||
"feedback_fail": "Не удалось открыть почтовый клиент",
|
||||
"server_fail": "Сервер недоступен",
|
||||
"show_imgs": "Показать изображения"
|
||||
"show_imgs": "Показать изображения",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Детали голосов",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "отмена",
|
||||
"login": "Войти",
|
||||
"steemconnect_description": "Если вы не хотите хранить зашифрованные ключи на своем устройстве, используйте Hivesigner.",
|
||||
"steemconnect_fee_description": "информация"
|
||||
"steemconnect_fee_description": "информация",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Зарегистрироваться",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Подтвердить Жалобу!",
|
||||
"confirm_report_body": "Вы уверены, что хотите подать жалобу?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Избранное",
|
||||
"load_error": "Невозможно загрузить избранное",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Открепить от блога",
|
||||
"pin-community": "Закрепить в сообществе",
|
||||
"unpin-community": "Открепить от сообщества",
|
||||
"edit-history": "История изменений"
|
||||
"edit-history": "История изменений",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Несуществующий пользователь",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "VPIS",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email je uspešno otvoren",
|
||||
"feedback_fail": "Klijent nije mogao otvoriti email",
|
||||
"server_fail": "Server nije dostupan",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Informacije o glasačima",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "otkaži",
|
||||
"login": "PRIJAVI SE",
|
||||
"steemconnect_description": "Ako ne želite da lozinka ostane šifrovana i sačuvana na uređaju, možete koristiti Hivesigner.",
|
||||
"steemconnect_fee_description": "informacije"
|
||||
"steemconnect_fee_description": "informacije",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Registrujte se",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Omiljeno",
|
||||
"load_error": "Nije moguće učitati omiljeno",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Nema postojećih korisnika",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "E-posta başarıyla açıldı",
|
||||
"feedback_fail": "E-posta istemcisi açılamadı",
|
||||
"server_fail": "Sunucu kullanılamıyor",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Oy Verenler",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "geç",
|
||||
"login": "GİRİŞ",
|
||||
"steemconnect_description": "Eğer kullanıcı şifrelerinizi şifreli olarak tutulmasını istemiyorsanız şifreleri cihazınıza indirebilir ya da Hivesigner kullanabilirsiniz.",
|
||||
"steemconnect_fee_description": "bilgi"
|
||||
"steemconnect_fee_description": "bilgi",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Kaydol",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Raporu Onayla!",
|
||||
"confirm_report_body": "Raporlamak istediğinize emin misiniz?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favoriler",
|
||||
"load_error": "Beğeniler yüklenemedi",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Kullanici Bulunamadi",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Електронний лист успішно відкрито",
|
||||
"feedback_fail": "Не вдалося відкрити клієнт електронної пошти",
|
||||
"server_fail": "Сервер недоступний",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Деталі голосування",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "скасувати",
|
||||
"login": "ЛОГІН",
|
||||
"steemconnect_description": "Якщо ви не бажаєте тримати пароль у зашифрованому вигляді на вашому пристрої, можете використовувати Hivesigner.",
|
||||
"steemconnect_fee_description": "інформація"
|
||||
"steemconnect_fee_description": "інформація",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Зареєструватися",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Обране",
|
||||
"load_error": "Не вдалося завантажити обране",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Неіснуючий користувач",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Voters Info",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Favorites",
|
||||
"load_error": "Could not load favorites",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "No existing user",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Elektron pochta muvaffaqiyatli ochildi",
|
||||
"feedback_fail": "Elektron pochta mijozini ochib bo‘lmadi",
|
||||
"server_fail": "Server mavjud emas",
|
||||
"show_imgs": "Rasmlarni Ko'rsatish"
|
||||
"show_imgs": "Rasmlarni Ko'rsatish",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Ovoz berganlar",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "bekor qilish",
|
||||
"login": "KIRISH",
|
||||
"steemconnect_description": "Agar siz qurilmangizda shifrlangan kalitlarni saqlashni xohlamasangiz, Hivesignerdan foydalaning.",
|
||||
"steemconnect_fee_description": "ma'lumot"
|
||||
"steemconnect_fee_description": "ma'lumot",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Ro‘yxatdan o‘tish",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Xabarni tasdiqlash!",
|
||||
"confirm_report_body": "Haqiqatan ham xabar berishni xohlaysizmi?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Sevimlilar",
|
||||
"load_error": "Sevimlilarni yuklab bo‘lmadi",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Blogdan olish",
|
||||
"pin-community": "Guruhga qadash",
|
||||
"unpin-community": "Guruhdan olish",
|
||||
"edit-history": "Tarixni Tahrirlash"
|
||||
"edit-history": "Tarixni Tahrirlash",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Mavjud bo'lmagan foydalanuvchi",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email đã được mở thành công",
|
||||
"feedback_fail": "Email mà khách hàng không thể mở",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Thông tin người bình chọn",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "huỷ",
|
||||
"login": "ĐĂNG NHẬP",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Ưa thích",
|
||||
"load_error": "Không thể tải các trang ưa thích",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "Không có người dùng hiện tại",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "Email successfully open",
|
||||
"feedback_fail": "Email client could not open",
|
||||
"server_fail": "Server not available",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "Alaye nipa oludibo",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "fa igi le",
|
||||
"login": "Se atewole",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "Awon ohun ti o yan ni aayo",
|
||||
"load_error": "A kori awon ohun asayan re pese",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "A ko ri oruko yi",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "成功打开电子邮件",
|
||||
"feedback_fail": "无法打开电子邮件客户端",
|
||||
"server_fail": "服务器不可用",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "投票者信息",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "取消",
|
||||
"login": "登录",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Hivesigner.",
|
||||
"steemconnect_fee_description": "info"
|
||||
"steemconnect_fee_description": "info",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "Sign Up",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "收藏夹",
|
||||
"load_error": "无法加载收藏夹",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "Unpin from blog",
|
||||
"pin-community": "Pin to community",
|
||||
"unpin-community": "Unpin from community",
|
||||
"edit-history": "Edit History"
|
||||
"edit-history": "Edit History",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "用户不存在",
|
||||
|
@ -251,7 +251,8 @@
|
||||
"feedback_success": "成功打開電子郵件",
|
||||
"feedback_fail": "無法打開電子郵件用戶端",
|
||||
"server_fail": "服務器不可用",
|
||||
"show_imgs": "Show Images"
|
||||
"show_imgs": "Show Images",
|
||||
"delete_account": "Delete Account"
|
||||
},
|
||||
"voters": {
|
||||
"voters_info": "投票者訊息",
|
||||
@ -267,7 +268,9 @@
|
||||
"cancel": "取消",
|
||||
"login": "登錄",
|
||||
"steemconnect_description": "假如您不想將您的密碼保存在手機,您可以使用Hivesigner。",
|
||||
"steemconnect_fee_description": "資訊"
|
||||
"steemconnect_fee_description": "資訊",
|
||||
"not_loggedin_alert": "Not LoggedIn",
|
||||
"not_loggedin_alert_desc": "Please login first"
|
||||
},
|
||||
"register": {
|
||||
"button": "註冊",
|
||||
@ -546,6 +549,11 @@
|
||||
"confirm_report_title": "Confirm Report!",
|
||||
"confirm_report_body": "Are you sure you want report?"
|
||||
},
|
||||
"delete": {
|
||||
"confirm_delete_title": "Confirm Delete",
|
||||
"confirm_delete_body": "Are you sure you want to delete account? It will erase all of your data",
|
||||
"request_sent": "Your request for deletion is sent"
|
||||
},
|
||||
"favorites": {
|
||||
"title": "收藏夹",
|
||||
"load_error": "無法載入收藏夹",
|
||||
@ -583,7 +591,8 @@
|
||||
"unpin-blog": "取消置頂",
|
||||
"pin-community": "置頂于社群",
|
||||
"unpin-community": "取消社區置頂",
|
||||
"edit-history": "更改副本"
|
||||
"edit-history": "更改副本",
|
||||
"mute": "Mute / Block"
|
||||
},
|
||||
"deep_link": {
|
||||
"no_existing_user": "用户不存在",
|
||||
|
@ -11,5 +11,6 @@ export default [
|
||||
'edit-history',
|
||||
'share',
|
||||
'bookmarks',
|
||||
'mute',
|
||||
'report',
|
||||
];
|
||||
|
@ -1,6 +1,8 @@
|
||||
const SHOW_HIDE_IMGS = 'show_hide_images';
|
||||
const DELETE_ACCOUNT = 'delete_account';
|
||||
// TODO: Add more settings types here
|
||||
|
||||
export default {
|
||||
SHOW_HIDE_IMGS,
|
||||
DELETE_ACCOUNT
|
||||
};
|
||||
|
@ -229,6 +229,20 @@ export const addReport = async (type: 'content' | 'user', data: string) => {
|
||||
}
|
||||
}
|
||||
|
||||
export const deleteAccount = async (username: string) => {
|
||||
try {
|
||||
const response = await api
|
||||
.post('/request-delete', {
|
||||
username,
|
||||
})
|
||||
return response.data
|
||||
} catch (err) {
|
||||
console.warn("Failed to report to ecency")
|
||||
bugsnagInstance.notify(err);
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* ************************************
|
||||
|
@ -93,13 +93,12 @@ export default function (state = initialState, action) {
|
||||
};
|
||||
|
||||
case UPDATE_CURRENT_ACCOUNT:
|
||||
return {
|
||||
...state,
|
||||
return Object.assign({}, state, {
|
||||
currentAccount: action.payload,
|
||||
isFetching: false,
|
||||
hasError: false,
|
||||
errorMessage: null,
|
||||
};
|
||||
});
|
||||
|
||||
case UPDATE_UNREAD_ACTIVITY_COUNT:
|
||||
return {
|
||||
|
@ -41,9 +41,10 @@ import {
|
||||
setIsBiometricEnabled,
|
||||
setEncryptedUnlockPin,
|
||||
setHidePostsThumbnails,
|
||||
logout,
|
||||
} from '../../../redux/actions/applicationActions';
|
||||
import { toastNotification } from '../../../redux/actions/uiAction';
|
||||
import { setPushToken, getNodes } from '../../../providers/ecency/ecency';
|
||||
import { showActionModal, toastNotification } from '../../../redux/actions/uiAction';
|
||||
import { setPushToken, getNodes, deleteAccount } from '../../../providers/ecency/ecency';
|
||||
import { checkClient } from '../../../providers/hive/dhive';
|
||||
import { removeOtherAccount, updateCurrentAccount } from '../../../redux/actions/accountAction';
|
||||
// Middleware
|
||||
@ -312,6 +313,11 @@ class SettingsContainer extends Component {
|
||||
case 'feedback':
|
||||
this._handleSendFeedback();
|
||||
break;
|
||||
|
||||
case settingsTypes.DELETE_ACCOUNT:
|
||||
this._handleDeleteAccount();
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
@ -389,6 +395,51 @@ class SettingsContainer extends Component {
|
||||
}
|
||||
};
|
||||
|
||||
_handleDeleteAccount = () => {
|
||||
const { dispatch, intl, currentAccount } = this.props as any;
|
||||
|
||||
const _onConfirm = () => {
|
||||
deleteAccount(currentAccount.username)
|
||||
.then(() => {
|
||||
dispatch(
|
||||
toastNotification(
|
||||
intl.formatMessage({
|
||||
id: 'delete.request_sent',
|
||||
}),
|
||||
),
|
||||
);
|
||||
dispatch(logout());
|
||||
})
|
||||
.catch(() => {
|
||||
dispatch(
|
||||
toastNotification(
|
||||
intl.formatMessage({
|
||||
id: 'delete.request_sent',
|
||||
}),
|
||||
),
|
||||
);
|
||||
dispatch(logout());
|
||||
});
|
||||
};
|
||||
|
||||
dispatch(
|
||||
showActionModal({
|
||||
title: intl.formatMessage({ id: 'delete.confirm_delete_title' }),
|
||||
body: intl.formatMessage({ id: 'delete.confirm_delete_body' }),
|
||||
buttons: [
|
||||
{
|
||||
text: intl.formatMessage({ id: 'alert.cancel' }),
|
||||
onPress: () => {},
|
||||
},
|
||||
{
|
||||
text: intl.formatMessage({ id: 'alert.delete' }),
|
||||
onPress: _onConfirm,
|
||||
},
|
||||
],
|
||||
}),
|
||||
);
|
||||
|
||||
}
|
||||
_clearUserData = async () => {
|
||||
const { otherAccounts, dispatch } = this.props;
|
||||
|
||||
|
@ -277,6 +277,19 @@ const SettingsScreen = ({
|
||||
actionType="feedback"
|
||||
handleOnButtonPress={handleOnButtonPress}
|
||||
/>
|
||||
{!!isLoggedIn && (
|
||||
<SettingsItem
|
||||
title={intl.formatMessage({
|
||||
id: 'settings.delete_account',
|
||||
})}
|
||||
text={intl.formatMessage({
|
||||
id: 'settings.delete_account',
|
||||
})}
|
||||
type="icon"
|
||||
actionType={settingsTypes.DELETE_ACCOUNT}
|
||||
handleOnButtonPress={handleOnButtonPress}
|
||||
/>
|
||||
)}
|
||||
</View>
|
||||
</ScrollView>
|
||||
</Fragment>
|
||||
|
24
src/utils/showLoginAlert.ts
Normal file
24
src/utils/showLoginAlert.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Alert } from 'react-native';
|
||||
import ROUTES from '../../src/constants/routeNames';
|
||||
|
||||
const showLoginAlert = ({ navigation, intl }) => {
|
||||
return Alert.alert(
|
||||
intl.formatMessage({ id: 'login.not_loggedin_alert' }),
|
||||
intl.formatMessage({ id: 'login.not_loggedin_alert_desc' }),
|
||||
[
|
||||
{
|
||||
text: intl.formatMessage({ id: 'login.cancel' }),
|
||||
onPress: () => console.log('Cancel Pressed'),
|
||||
style: 'cancel',
|
||||
},
|
||||
{
|
||||
text: intl.formatMessage({ id: 'login.login' }),
|
||||
onPress: () => {
|
||||
navigation.navigate(ROUTES.SCREENS.LOGIN);
|
||||
},
|
||||
},
|
||||
],
|
||||
);
|
||||
};
|
||||
|
||||
export default showLoginAlert;
|
Loading…
Reference in New Issue
Block a user