Merge remote-tracking branch 'upstream/development' into nt/auto-login

# Conflicts:
#	android/app/src/main/AndroidManifest.xml
#	src/screens/application/container/applicationContainer.tsx
This commit is contained in:
Nouman Tahir 2022-08-15 14:30:55 +05:00
commit 5a521b8377
127 changed files with 820 additions and 622 deletions

View File

@ -28,16 +28,25 @@
android:allowBackup="false"
android:largeHeap="true"
android:theme="@style/AppTheme">
<!-- Add this SplashActivity -->
<activity
android:name=".SplashActivity"
android:theme="@style/SplashTheme"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:launchMode="singleTask"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
android:windowSoftInputMode="adjustResize"
android:exported="true">
<intent-filter android:label="Ecency" android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
@ -88,6 +97,11 @@
android:host="ecency.com"
android:path="/login"
/>
<data
android:scheme="https"
android:host="ecency.com"
android:path="/purchase"
/>
</intent-filter>
<intent-filter android:label="Ecency" >
<action android:name="android.intent.action.VIEW" />

View File

@ -0,0 +1,16 @@
package app.esteem.mobile.android;
import android.content.Intent;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
public class SplashActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = new Intent(this, MainActivity.class);
startActivity(intent);
finish();
}
}

View File

@ -6,6 +6,8 @@ import com.facebook.react.ReactRootView;
import com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView;
import android.content.Intent;
import android.content.res.Configuration;
import org.devio.rn.splashscreen.SplashScreen;
import android.os.Bundle;
public class MainActivity extends ReactActivity {
/**
@ -33,6 +35,11 @@ public class MainActivity extends ReactActivity {
setIntent(intent);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
SplashScreen.show(this);
super.onCreate(savedInstanceState);
}
//native side reference: https://github.com/facebook/react-native/issues/28823#issuecomment-642032481
@Override
public void onConfigurationChanged(Configuration newConfig) {

View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@color/splashscreen_bg"/>
<item
android:drawable="@drawable/ecency_logo"
android:gravity="center" />
</layer-list>

View File

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?><vector xmlns:aapt="http://schemas.android.com/aapt" xmlns:android="http://schemas.android.com/apk/res/android" android:height="104dp" android:viewportHeight="103.66" android:viewportWidth="107.0" android:width="107dp">
<path android:fillColor="#FF004BD8" android:pathData="M67.49,103.52c-13.16 0.11 -44.19 0.39 -51.15-0.42C10.69,102.44 0.28 ,98.67 0.16 ,84.45c-0.08-8.19-0.55-41.59 0.62 -49,2.43-15.4,6.56-25.06,24.16-33C39.88-4,71.78,1.37,75.23,27.15c0.65,4.9,1.83,5.45,3.63,5.83,28.55,6,34.86,38.23,21.25,55.8C91.45,100,82.1,102.14,67.49,103.52ZM62.3,35.88C63.29,19.1,46.27,7,29.08,16,16.81,22.37,15.75,31.66,15,42.24c-1,13.4-0.37,23.16-0.14,36.59 0.11 ,6,1.85,9.67,8.3,10.25,1.67 0.15 ,24.74,0,36.73 0.09 ,15.63 0.08 ,35-7.12,31.93-26.15A18.46,18.46,0,0,0,76.08,48.14a3.07,3.07,0,0,0-3.22,1.44C62.74,70.49,40.38,69.45,31.29,58c-8.18-10.28-3.94-27.27,6.81-30.87,4-1.36,7.43-0.16,9.09,2.71,2.68,4.64 0.18 ,8.83-3.62,11.14s-3.57,5.71-2,8c3.73,5.23,11.07,4.19,15.72-0.4C61.07,44.83,62,40.57,62.3,35.88Z "/>
</vector>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background_splash"
android:orientation="vertical">
</LinearLayout>

View File

@ -2,4 +2,4 @@
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
</adaptive-icon>

View File

@ -2,4 +2,4 @@
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
</adaptive-icon>

View File

@ -3,4 +3,6 @@
<item name="splashBackground" type="color">#ffffff</item>
<item name="notification_icon" type="color">#ffffff</item>
<color name="primary_dark">#000000</color>
</resources>
<color name="splashscreen_bg">#ffffff</color>
<color name="app_bg">#ffffff</color>
</resources>

View File

@ -1,6 +1,23 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowExitAnimation">@android:anim/fade_out</item>
<item name="android:editTextBackground">@android:color/transparent</item>
<!-- Customize your theme here. -->
<item name="android:textColor">#000000</item>
<!-- Add the following line to set the default status bar color for all the app. -->
<item name="android:statusBarColor">@color/app_bg</item>
<!-- Add the following line to set the default status bar text color for all the app
to be a light color (false) or a dark color (true) -->
<item name="android:windowLightStatusBar">false</item>
<!-- Add the following line to set the default background color for all the app. -->
<item name="android:windowBackground">@color/app_bg</item>
</style>
<!-- Adds the splash screen definition -->
<style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:statusBarColor">@color/splashscreen_bg</item>
<item name="android:background">@drawable/background_splash</item>
</style>
</resources>

View File

@ -62,7 +62,6 @@ allprojects {
includeGroup("com.facebook.yoga")
includeGroup("com.facebook.fbjni")
includeGroup("com.henninghall.android")
includeGroup("org.matomo.sdk")
includeModule("com.yqritc", "android-scalablevideoview")
includeModule("com.wei.android.lib", "fingerprintidentify")
}

View File

@ -153,9 +153,6 @@ PODS:
- lottie-react-native (5.1.3):
- lottie-ios (~> 3.2.3)
- React-Core
- MatomoTracker (7.4.1):
- MatomoTracker/Core (= 7.4.1)
- MatomoTracker/Core (7.4.1)
- nanopb (2.30908.0):
- nanopb/decode (= 2.30908.0)
- nanopb/encode (= 2.30908.0)
@ -348,9 +345,6 @@ PODS:
- React-Core
- react-native-fingerprint-scanner (6.0.0):
- React
- react-native-matomo-sdk (0.4.1):
- MatomoTracker (~> 7)
- React (~> 0.60)
- react-native-netinfo (5.9.10):
- React-Core
- react-native-orientation-locker (1.4.0):
@ -533,7 +527,6 @@ DEPENDENCIES:
- react-native-config (from `../node_modules/react-native-config`)
- react-native-date-picker (from `../node_modules/react-native-date-picker`)
- react-native-fingerprint-scanner (from `../node_modules/react-native-fingerprint-scanner`)
- react-native-matomo-sdk (from `../node_modules/react-native-matomo-sdk`)
- "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
- react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`)
- react-native-randombytes (from `../node_modules/react-native-randombytes`)
@ -593,7 +586,6 @@ SPEC REPOS:
- GoogleDataTransport
- GoogleUtilities
- libwebp
- MatomoTracker
- nanopb
- PromisesObjC
- SDWebImage
@ -657,8 +649,6 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-date-picker"
react-native-fingerprint-scanner:
:path: "../node_modules/react-native-fingerprint-scanner"
react-native-matomo-sdk:
:path: "../node_modules/react-native-matomo-sdk"
react-native-netinfo:
:path: "../node_modules/@react-native-community/netinfo"
react-native-orientation-locker:
@ -771,7 +761,6 @@ SPEC CHECKSUMS:
libwebp: e90b9c01d99205d03b6bb8f2c8c415e5a4ef66f0
lottie-ios: c058aeafa76daa4cf64d773554bccc8385d0150e
lottie-react-native: a501112fa980529ccb80b9f3ee117a7f98c6af3a
MatomoTracker: 24a846c9d3aa76933183fe9d47fd62c9efa863fb
nanopb: a0ba3315591a9ae0a16a309ee504766e90db0c96
Permission-Camera: 597646618d1edcc055a3f660844c2ee6de8e0596
PromisesObjC: 99b6f43f9e1044bd87a95a60beff28c2c44ddb72
@ -790,7 +779,6 @@ SPEC CHECKSUMS:
react-native-config: c98128a72bc2c3a1ca72caec0b021f0fa944aa29
react-native-date-picker: d83ab9cccbc497642a93fdca783ae76ecd6b17b6
react-native-fingerprint-scanner: ac6656f18c8e45a7459302b84da41a44ad96dbbe
react-native-matomo-sdk: 025c54f92e1e26a4d0acee7c3f28cb0fc7e4729c
react-native-netinfo: 30fb89fa913c342be82a887b56e96be6d71201dd
react-native-orientation-locker: 2da91e5391971dace445495821c899c111dcad7a
react-native-randombytes: 421f1c7d48c0af8dbcd471b0324393ebf8fe7846

View File

@ -104,7 +104,6 @@
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-level-fs": "^3.0.0",
"react-native-linear-gradient": "^2.4.2",
"react-native-matomo-sdk": "feruzm/react-native-matomo-sdk",
"react-native-media-controls": "^2.3.0",
"react-native-modal": "11.5.6",
"react-native-modal-dropdown": "^1.0.2",

View File

@ -16,7 +16,7 @@ export default EStyleSheet.create({
marginRight: 3,
},
text: {
color: '$primaryDarkGray',
color: '$iconColor',
alignSelf: 'center',
fontSize: 11,
},

View File

@ -18,6 +18,9 @@ import { TextWithIcon } from '../../basicUIElements';
import styles from './commentStyles';
import { useAppSelector } from '../../../hooks';
import { OptionsModal } from '../../atoms';
import { useDispatch } from 'react-redux';
import { showReplyModal } from '../../../redux/actions/uiAction';
import postTypes from '../../../constants/postTypes';
const CommentView = ({
avatarSize,
@ -43,6 +46,7 @@ const CommentView = ({
}) => {
const intl = useIntl();
const actionSheet = useRef(null);
const dispatch = useDispatch();
const isMuted = useAppSelector(state => state.account.currentAccount.mutes?.indexOf(comment.author) > -1);
const lastCacheUpdate = useAppSelector((state) => state.cache.lastUpdate);
@ -113,6 +117,13 @@ const CommentView = ({
setChildCount(childCount + 1);
}
const _handleOnReplyPress = () => {
if (isLoggedIn) {
dispatch(showReplyModal(comment));
} else {
console.log('Not LoggedIn');
}
}
const _renderReadMoreButton = () => (
<TextWithIcon
@ -151,7 +162,7 @@ const CommentView = ({
mainAuthor={mainAuthor}
fetchedAt={fetchedAt}
incrementRepliesCount={_incrementRepliesCount}
handleOnReplyPress={handleOnReplyPress}
handleOnReplyPress={_handleOnReplyPress}
/>
</AnimatedView>
@ -196,6 +207,7 @@ const CommentView = ({
isShowPayoutValue
content={comment}
handleCacheVoteIncrement={_handleCacheVoteIncrement}
parentType={postTypes.COMMENT}
/>
<TextWithIcon
iconName="heart-outline"
@ -218,7 +230,7 @@ const CommentView = ({
iconStyle={styles.leftIcon}
style={styles.leftButton}
name="comment-outline"
onPress={() => handleOnReplyPress && handleOnReplyPress(comment)}
onPress={_handleOnReplyPress}
iconType="MaterialCommunityIcons"
/>
)}

View File

@ -3,16 +3,14 @@ import { useSelector, useDispatch } from 'react-redux';
import { debounce } from 'lodash';
// HIVE
import { getCommunities, getSubscriptions } from '../../../../providers/hive/dhive';
import { getCommunities } from '../../../../providers/hive/dhive';
import SelectCommunityModalView from '../view/selectCommunityModalView';
// Actions
import {
fetchCommunities,
fetchCommunitiesSuccess,
fetchSubscribedCommunities,
fetchSubscribedCommunitiesSuccess,
} from '../../../../redux/actions/communitiesAction';
import { mergeSubCommunitiesCacheInSubList } from '../../../../utils/communitiesUtils';

View File

@ -33,7 +33,7 @@ export default EStyleSheet.create({
},
icon: {
fontSize: 24,
color: '$primaryDarkText',
color: '$darkGrayBackground',
},
badge: {
position: 'absolute',

View File

@ -109,7 +109,7 @@ const MarkdownEditorView = ({
useEffect(() => {
if (!isPreviewActive) {
_setTextAndSelection({ selection: { start: 0, end: 0 }, text: bodyText });
_setTextAndSelection({ selection: bodySelection, text: bodyText });
}
}, [isPreviewActive]);
@ -232,13 +232,13 @@ const MarkdownEditorView = ({
// eslint-disable-next-line react-hooks/exhaustive-deps
const _setTextAndSelection = useCallback(({ selection: _selection, text: _text }) => {
// console.log('_text : ', _text);
inputRef.current.setNativeProps({
inputRef?.current?.setNativeProps({
text: _text,
});
const _updateSelection = () => {
bodySelection = _selection
inputRef.current.setNativeProps({
inputRef?.current?.setNativeProps({
selection: _selection,
});
}
@ -448,6 +448,7 @@ const MarkdownEditorView = ({
draftChips={fields.tags.length > 0 ? fields.tags : null}
componentID="tag-area"
intl={intl}
isPreviewActive={isPreviewActive}
/>
)}
{isReply && (

View File

@ -21,7 +21,6 @@ import { Modal } from '../modal';
// Styles
import styles from './postBoostStyles';
import { OptionsModal } from '../atoms';
import { deepLinkParser } from '../../utils/deepLinkParser';
import postUrlParser from '../../utils/postUrlParser';
class BoostPostScreen extends PureComponent {

View File

@ -20,6 +20,7 @@ import { Upvote } from '../../upvote';
import styles from './postCardStyles';
import { TextButton } from '../..';
import getWindowDimensions from '../../../utils/getWindowDimensions';
import postTypes from '../../../constants/postTypes';
const dim = getWindowDimensions();
const DEFAULT_IMAGE =
@ -178,6 +179,7 @@ const PostCardView = ({
isShowPayoutValue
content={content}
handleCacheVoteIncrement={_handleCacheVoteIncrement}
parentType={postTypes.POST}
/>
<TouchableOpacity style={styles.commentButton} onPress={_handleOnVotersPress}>
<TextWithIcon

View File

@ -26,6 +26,7 @@ import { QuickReplyModal } from '../..';
import getWindowDimensions from '../../../utils/getWindowDimensions';
import { useAppDispatch } from '../../../hooks';
import { showReplyModal } from '../../../redux/actions/uiAction';
import postTypes from '../../../constants/postTypes';
const HEIGHT = getWindowDimensions().height;
const WIDTH = getWindowDimensions().width;
@ -115,6 +116,7 @@ const PostDisplayView = ({
isShowPayoutValue
content={post}
handleCacheVoteIncrement={_handleCacheVoteIncrement}
parentType={parentPost ? postTypes.COMMENT : postTypes.POST}
/>
<TextWithIcon
iconName="heart-outline"

View File

@ -2,7 +2,6 @@ import React, { useState, useEffect, useRef, useReducer } from 'react';
import { useDispatch, useSelector } from 'react-redux';
import { get, isEmpty } from 'lodash';
import unionBy from 'lodash/unionBy';
import Matomo from 'react-native-matomo-sdk';
import { useIntl } from 'react-intl';
import { Alert, AppState } from 'react-native';
@ -656,23 +655,6 @@ const PostsContainer = ({
},
});
}
// track filter and tag views
if (isAnalytics) {
if (tag) {
Matomo.trackView([`/${selectedFilterValue}/${tag}`]).catch((error) =>
console.warn('Failed to track screen', error),
);
} else if (selectedFilterValue === 'feed') {
Matomo.trackView([`/@${feedUsername}/${selectedFilterValue}`]).catch((error) =>
console.warn('Failed to track screen', error),
);
} else {
Matomo.trackView([`/${selectedFilterValue}`]).catch((error) =>
console.warn('Failed to track screen', error),
);
}
}
};
const _handleOnRefreshPosts = () => {

View File

@ -5,7 +5,6 @@ import { Comments, NoPost } from '../..';
import { useAppSelector } from '../../../hooks';
import { getAccountPosts } from '../../../providers/hive/dhive';
import styles from '../profileStyles';
import Matomo from 'react-native-matomo-sdk';
import {unionBy } from 'lodash';
interface CommentsTabContentProps {
@ -57,13 +56,6 @@ const CommentsTabContent = ({isOwnProfile, username, type, onScroll, selectedUse
sort:type
};
if (isAnalytics && selectedUser.user) {
Matomo.trackView([`/@${selectedUser.name}/${type}`]).catch((error) =>
console.warn('Failed to track screen', error),
);
}
const result = await getAccountPosts(query)
let _comments:any[] = refresh ? result : unionBy(data, result, 'permlink');

View File

@ -1,6 +1,5 @@
import { getAccountPosts, getPost, getRankedPosts } from "../../../providers/hive/dhive";
import { filterLatestPosts, getUpdatedPosts } from "./tabbedPostsHelpers";
import Matomo from 'react-native-matomo-sdk';
import { LoadPostsOptions } from "./tabbedPostsModels";
import { getPromotedEntries } from "../../../providers/ecency/ecency";
@ -179,23 +178,6 @@ export const loadPosts = async ({
isRefreshing:false,
})
}
// track filter and tag views
if (isAnalytics) {
if (tag) {
Matomo.trackView([`/${filter}/${tag}`]).catch((error) =>
console.warn('Failed to track screen', error),
);
} else if (filter === 'friends' || filter === 'communities') {
Matomo.trackView([`/@${feedUsername}/${filter}`]).catch((error) =>
console.warn('Failed to track screen', error),
);
} else {
Matomo.trackView([`/${filter}`]).catch((error) =>
console.warn('Failed to track screen', error),
);
}
}
};

View File

@ -11,7 +11,7 @@ export default EStyleSheet.create({
minWidth: '$deviceWidth / 1.9',
height: 44,
borderRadius: 30,
backgroundColor: '$primaryDarkText',
backgroundColor: '$darkGrayBackground',
margin: 5,
shadowOffset: {
height: 5,

View File

@ -2,11 +2,11 @@ import React, { useState, useEffect } from 'react';
import { connect } from 'react-redux';
import get from 'lodash/get';
// Realm
import { setUpvotePercent } from '../../../realm/realm';
// Services and Actions
import { setUpvotePercent as upvoteAction } from '../../../redux/actions/applicationActions';
import {
setCommentUpvotePercent,
setPostUpvotePercent,
} from '../../../redux/actions/applicationActions';
// Utils
import { getTimeFromNow } from '../../../utils/time';
@ -17,6 +17,7 @@ import parseAsset from '../../../utils/parseAsset';
import UpvoteView from '../view/upvoteView';
import { updateVoteCache } from '../../../redux/actions/cacheActions';
import { useAppSelector } from '../../../hooks';
import postTypes from '../../../constants/postTypes';
/*
* Props Name Description Value
@ -31,12 +32,14 @@ const UpvoteContainer = (props) => {
isLoggedIn,
isShowPayoutValue,
pinCode,
upvotePercent,
postUpvotePercent,
commentUpvotePercent,
globalProps,
dispatch,
activeVotes = [],
handleCacheVoteIncrement,
fetchPost,
parentType,
} = props;
const [isVoted, setIsVoted] = useState(null);
@ -82,8 +85,12 @@ const UpvoteContainer = (props) => {
const _setUpvotePercent = (value) => {
if (value) {
setUpvotePercent(String(value));
dispatch(upvoteAction(value));
if (parentType === postTypes.POST) {
dispatch(setPostUpvotePercent(value));
}
if (parentType === postTypes.COMMENT) {
dispatch(setCommentUpvotePercent(value));
}
}
};
@ -198,7 +205,9 @@ const UpvoteContainer = (props) => {
promotedPayout={promotedPayout}
totalPayout={totalPayout}
maxPayout={maxPayout}
upvotePercent={upvotePercent}
postUpvotePercent={postUpvotePercent}
commentUpvotePercent={commentUpvotePercent}
parentType={parentType}
beneficiaries={beneficiaries}
warnZeroPayout={warnZeroPayout}
breakdownPayout={breakdownPayout}
@ -214,7 +223,8 @@ const UpvoteContainer = (props) => {
const mapStateToProps = (state) => ({
isLoggedIn: state.application.isLoggedIn,
upvotePercent: state.application.upvotePercent,
postUpvotePercent: state.application.postUpvotePercent,
commentUpvotePercent: state.application.commentUpvotePercent,
pinCode: state.application.pin,
currentAccount: state.account.currentAccount,
globalProps: state.account.globalProps,

View File

@ -21,6 +21,7 @@ import { vote } from '../../../providers/hive/dhive';
// Styles
import styles from './upvoteStyles';
import { useAppSelector } from '../../../hooks';
import postTypes from '../../../constants/postTypes';
interface UpvoteViewProps {
isDeclinedPayout:boolean;
@ -44,7 +45,9 @@ interface UpvoteViewProps {
dispatch:any
onVote:(amount:string, downvote:boolean)=>void;
isVoted:boolean;
upvotePercent:number;
postUpvotePercent: number;
commentUpvotePercent: number;
parentType: string;
}
const UpvoteView = ({
@ -68,7 +71,9 @@ const UpvoteView = ({
dispatch,
onVote,
isVoted,
upvotePercent
postUpvotePercent,
commentUpvotePercent,
parentType,
}:UpvoteViewProps) => {
const intl = useIntl();
@ -83,11 +88,20 @@ const UpvoteView = ({
const [upvote, setUpvote] = useState(isVoted || false);
const [downvote, setDownvote] = useState(isDownVoted || false);
const [isShowDetails, setIsShowDetails] = useState(false);
const [upvotePercent, setUpvotePercent] = useState(1);
useEffect(() => {
_calculateEstimatedAmount();
}, [])
useEffect(() => {
if (parentType === postTypes.POST) {
setUpvotePercent(postUpvotePercent);
}
if (parentType === postTypes.COMMENT) {
setUpvotePercent(commentUpvotePercent);
}
},[postUpvotePercent, commentUpvotePercent, parentType])
useEffect(() => {
const value = (isVoted || isDownVoted)

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Kode PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Atôe ulang",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, lôn tuwoe nyan...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Meuhasè!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Hana uréung pakék",
"no_existing_post": "Hana haba sapeu"
"no_existing_post": "Hana haba sapeu",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Post",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "رمز PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "إعادة تعيين رمز Pin",
"reset": "إعادة",
"nsfw_content": "ليس آمنًا للمشاهدة",
@ -419,7 +420,8 @@
"forgot_text": "أوه، لقد نسيت ذلك...",
"pin_not_matched": "كلمة المرور ليست متطابقة. الرجاء المحاولة مرة أخرى.",
"attempts_postfix": "المحاولات الفاشلة",
"message_reset_warning": "سيتم مسح بيانات المستخدم في المحاولة الفاشلة التالية"
"message_reset_warning": "سيتم مسح بيانات المستخدم في المحاولة الفاشلة التالية",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "تم بنجاح!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "لا يوجد أي مستخدم حاليا",
"no_existing_post": "لا يوجد أي منشور حالياً"
"no_existing_post": "لا يوجد أي منشور حالياً",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "منشورات",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN kod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Pin Kodu Sıfırla",
"reset": "Sıfırla",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Unutmuşam...",
"pin_not_matched": "PIN uyğun gəlmir, zəhmət olmasa yenidən sınayın.",
"attempts_postfix": "uğursuz cəhd(lər)",
"message_reset_warning": "Növbəti uğursuz cəhddə istifadəçi verilənləri silənəcək"
"message_reset_warning": "Növbəti uğursuz cəhddə istifadəçi verilənləri silənəcək",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Uğurlu!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Heç bir istifadəçi yoxdur",
"no_existing_post": "Heç bir göndəriş yoxdur"
"no_existing_post": "Heç bir göndəriş yoxdur",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Göndərişlər",

View File

@ -229,6 +229,7 @@
"delegations": "Делегация/отдаване"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Анулирай пин код",
"reset": "Изчисти",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "О, забравих го ...",
"pin_not_matched": "ПИН кодовете не съвпадат. Моля, опитайте отново.",
"attempts_postfix": "неуспешни опити",
"message_reset_warning": "Информацията ще бъде изтрита при следваща грешка"
"message_reset_warning": "Информацията ще бъде изтрита при следваща грешка",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Успех",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Съществуващ потребител",
"no_existing_post": "Несъществуваща тема"
"no_existing_post": "Несъществуваща тема",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Публикации",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "পিন কোডটি রিসেট করুন",
"reset": "রিসেট",
"nsfw_content": "এনএসএফডাব্লু",
@ -419,7 +420,8 @@
"forgot_text": "ওহ, আমি এটি ভুলে গিয়েছিলাম ...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "সফল!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "কোন বিদ্যমান ব্যবহারকারী",
"no_existing_post": "কোন বিদ্যমান পোস্ট নেই"
"no_existing_post": "কোন বিদ্যমান পোস্ট নেই",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "পোস্ট",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Povjeravanja"
},
"pincode": "Pin kod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Poništi Pin kod",
"reset": "Poništi",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, zaboravio sam...",
"pin_not_matched": "PIN se ne podudara, pokušajte ponovo.",
"attempts_postfix": "neuspjeli pokušaj(i)",
"message_reset_warning": "Korisnički podaci će biti obrisani pri sljedećem neuspjelom pokušaju"
"message_reset_warning": "Korisnički podaci će biti obrisani pri sljedećem neuspjelom pokušaju",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Uspjeh!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Nema postojećeg korisnika",
"no_existing_post": "Nema postojeće objave"
"no_existing_post": "Nema postojeće objave",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Objave",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Pin Code festlegen",
"reset": "Zurücksetzen",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, ich habe ihn vergessen...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Erfolgreich!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Kein vorhandener Benutzer",
"no_existing_post": "Kein vorhandener Beitrag"
"no_existing_post": "Kein vorhandener Beitrag",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Beiträge",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -585,7 +585,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link":"Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Código PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reiniciar Código Pin",
"reset": "Reiniciar",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegaciones"
},
"pincode": "Pincode",
"biometric": "Desbloquear por Huella Dactilar / Reconocimiento Facial",
"reset_pin": "Reiniciar código pin",
"reset": "Reiniciar",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, me olvidé...",
"pin_not_matched": "El PIN no coincide. Inténtelo de nuevo.",
"attempts_postfix": "intento(s) fallidos",
"message_reset_warning": "Los datos del usuario serán borrados en el próximo intento fallido"
"message_reset_warning": "Los datos del usuario serán borrados en el próximo intento fallido",
"biometric_desc": "Escanea tu huella dactilar en el escáner del dispositivo para continuar"
},
"alert": {
"success": "Conseguido!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Usuario no existe",
"no_existing_post": "Publicación no existe"
"no_existing_post": "Publicación no existe",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Publicaciones",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -91,24 +91,24 @@
"fill_transfer_from_savings": "Hoius alustatud",
"fill_vesting_withdraw": "Hive Poweri vähendamist alustatud",
"ecency": {
"title": "Points",
"name": "Ecency Points",
"buy": "GET POINTS"
"title": "Punktid",
"name": "Ecency punktid",
"buy": "OSTA PUNKTE"
},
"savinghive": {
"title": "HIVE Savings"
"title": "HIVE Hoius"
},
"savinghbd": {
"title": "HBD Savings"
"title": "HBD Hoius"
},
"hive": {
"title": "HIVE",
"name": "Hive Token",
"buy": "GET HIVE"
"buy": "OSTA HIVE"
},
"hbd": {
"title": "HBD",
"buy": "GET HBD"
"buy": "OSTA HBD"
},
"hive_power": {
"title": "HIVE POWER",
@ -124,7 +124,7 @@
},
"last_updated": "Last Updated:",
"updating": "Updating...",
"coin_details": "Details",
"coin_details": "Üksikasjad",
"change": "Change",
"activities": "Activities",
"savings_withdrawal": "Pending Withdrawals",
@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Lähtesta Pin-kood",
"reset": "Algseisundi Taastamine",
"nsfw_content": "18+",
@ -419,7 +420,8 @@
"forgot_text": "Ups, ma unustasin...",
"pin_not_matched": "Vale PIN, palun proovi uuesti.",
"attempts_postfix": "ebaõnnestunud katse(d)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Edukas!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Kasutaja ei eksisteeri",
"no_existing_post": "Postitus ei eksisteeri"
"no_existing_post": "Postitus ei eksisteeri",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Postitused",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "تنظیم مجدد پن کد",
"reset": "راه اندازی مجدد",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "آه، فراموشش کردم...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "با موفقیت!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "کاربری موجود نیست",
"no_existing_post": "پستی موجود نیست"
"no_existing_post": "پستی موجود نیست",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "پست‌ها",

View File

@ -229,6 +229,7 @@
"delegations": "Valtuutukset"
},
"pincode": "PIN-koodi",
"biometric": "Sormenjälki / Kasvontunnistus",
"reset_pin": "Nollaa Pin-koodi",
"reset": "Nollaa",
"nsfw_content": "NSFW",
@ -379,7 +380,7 @@
"url": "URL",
"enter_url_placeholder": "Kirjoita URL-osoite",
"link_type_text": "Linkin tyyppi",
"insert_link": "Insert Link",
"insert_link": "Lisää linkki",
"preview": "Esikatselu",
"invalid_url_error": "Syötä kelvollinen URL",
"plain": "Yksinkertainen",
@ -419,7 +420,8 @@
"forgot_text": "Unohdin sen...",
"pin_not_matched": "PIN-koodi ei täsmää, yritä uudelleen.",
"attempts_postfix": "epäonnistuneet yritykset",
"message_reset_warning": "Käyttäjätiedot poistetaan seuraavan epäonnistuneen yrityksen yhteydessä"
"message_reset_warning": "Käyttäjätiedot poistetaan seuraavan epäonnistuneen yrityksen yhteydessä",
"biometric_desc": "Skannaa sormenjälkesi laitteen skannerilla jatkaaksesi"
},
"alert": {
"success": "Onnistui!",
@ -490,7 +492,7 @@
"invalid_response": "Pyyntöä ei voitu käsitellä, Yritä myöhemmin uudelleen.",
"wallet_updating": "Lompakon päivitys käynnissä, yritä uudelleen päivityksen valmistuessa",
"claim_failed": "Palkintojen lunastaminen epäonnistui, {message}\nYritä uudelleen tai kirjoita osoitteeseen support@ecency.com",
"connection_issues": "The server is unreachable, please check your connection and try again."
"connection_issues": "Palvelin ei ole tavoitettavissa, tarkista yhteytesi ja yritä uudelleen."
},
"post": {
"reblog_alert": "Haluatko varmasti jakaa?",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Käyttäjää ei ole",
"no_existing_post": "Julkaisua ei ole"
"no_existing_post": "Julkaisua ei ole",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Julkaisut",
@ -637,7 +640,7 @@
"account_detail_head": "Tilin tiedot",
"account_detail_subhead": "Anna HIVE Power -valtuutuksen saajan käyttäjänimi",
"delegat_detail_head": "Valtuutuksen tiedot",
"delegat_detail_subhead": "New amount overwrites already delegated HIVE Power ",
"delegat_detail_subhead": "Uusi määrä korvaa aiemman HIVE Power -valtuutuksen ",
"new_amount": "Uusi määrä",
"review": "VAHVISTA",
"confirm": "Vahvista valtuutus",
@ -655,10 +658,10 @@
"powering_down_info": "Seuraavaan tehonalennukseen on {days} päivää, {hp} HIVE",
"invalid_amount": "Virheellinen määrä",
"invalid_amount_desc": "Syötä kelvollinen arvo",
"account_select_title": "Account Details",
"account_select_description": "Operations related to funds are irreversible, make sure receivers username is correct",
"amount_select_title": "Transfer Details",
"amount_select_description": "Enter transfer amount within maximum available balance and must be greater than 0.001"
"account_select_title": "Tilitiedot",
"account_select_description": "Varoihin liittyvät toiminnot ovat peruuttamattomia. Varmista, että vastaanottajan käyttäjätunnus on oikea",
"amount_select_title": "Siirron Tiedot",
"amount_select_description": "Syötä siirtosumma maksimaalisen käytettävissä olevan saldon rajoissa ja määrän tulee olla suurempi kuin 0.001"
},
"boost": {
"title": "Hanki pisteitä",
@ -787,8 +790,8 @@
"line3_heading": "Liity Ecencyn yhteisöihin!",
"line3_body": "Rakenna omistamaasi yhteisöä, saa palkkioita ja palkitse muita.",
"get_started": "Aloitetaan!",
"terms_description": "By accepting, you agree to our Terms of Service and Privacy Policies.",
"terms_text": "Read Here!"
"terms_description": "Kirjautumalla sisään hyväksyt käyttöehtomme ja tietosuojamme periaatteet.",
"terms_text": "Lue lisää!"
},
"time": {
"second": "s",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "I-reset ang Pin Code",
"reset": "I-reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Naku, nakalimutan ko...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Tagumpay!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Walang makita na user",
"no_existing_post": "Walang makita na post"
"no_existing_post": "Walang makita na post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Mga post",

View File

@ -229,6 +229,7 @@
"delegations": "Délégations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Réinitialisez le Code Pin",
"reset": "Réinitialiser",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Ha, je l'ai oublié ...",
"pin_not_matched": "Les codes PIN ne correspondent pas. Veuillez réessayer.",
"attempts_postfix": "Tentatives échouées",
"message_reset_warning": "Les données de l'utilisateur seront effacées lors de la prochaine tentative échouée"
"message_reset_warning": "Les données de l'utilisateur seront effacées lors de la prochaine tentative échouée",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Succés!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Utilisateur inexistant",
"no_existing_post": "Post inexistant"
"no_existing_post": "Post inexistant",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Publications",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN kodus",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Aftralagei",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "O, ik ufarmaudida...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Warþ!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "קוד PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "אתחל",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "אוי, אני שכחתי את זה...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "הצלחה!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "המשתמש אינו קיים",
"no_existing_post": "הפוסט אינו קיים"
"no_existing_post": "הפוסט אינו קיים",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "העלאות",

View File

@ -229,6 +229,7 @@
"delegations": "डेलीगेशन्स"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "पिन कोड रीसेट करें",
"reset": "पुनः नियोजन",
"nsfw_content": "एनडीएफडब्ल्यू",
@ -419,7 +420,8 @@
"forgot_text": "ओह! मैं इसे भूल गया...",
"pin_not_matched": "पिन मेल नहीं खाता, कृपया पुनः प्रयास करें।",
"attempts_postfix": "असफल प्रयास",
"message_reset_warning": "अगले असफल प्रयास पर उपयोगकर्ता डेटा मिटा दिया जाएगा"
"message_reset_warning": "अगले असफल प्रयास पर उपयोगकर्ता डेटा मिटा दिया जाएगा",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "सफल!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "कोई विद्यमान उपयोगकर्ता नहीं",
"no_existing_post": "कोई विद्यमान पोस्ट नहीं"
"no_existing_post": "कोई विद्यमान पोस्ट नहीं",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "पोस्ट",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Resetiraj",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Uh, zaboravio sam...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Uspjeh!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Ne postojeći korisnik",
"no_existing_post": "Ne postojeća objava"
"no_existing_post": "Ne postojeća objava",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN kód",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Pin kód beállítása",
"reset": "Visszaállítás",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Ó, elfelejtettem...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Sikerült!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Nem létező felhasználó",
"no_existing_post": "Nem létező bejegyzés"
"no_existing_post": "Nem létező bejegyzés",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Bejegyzések",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -217,7 +217,7 @@
"currency": "Nilai Tukar Mata Uang",
"language": "Bahasa",
"server": "Server",
"color_theme": "Appearance",
"color_theme": "Tampilan",
"push_notification": "Notifikasi Gegas",
"notification": {
"follow": "Ikuti",
@ -226,9 +226,10 @@
"mention": "Menyebutkan",
"reblog": "Reblog",
"transfers": "Transfer",
"delegations": "Delegations"
"delegations": "Delagasi"
},
"pincode": "Kode PIN",
"biometric": "Buka dengan Sidik Jari / Wajah",
"reset_pin": "Setel Ulang Kode Pin",
"reset": "Setel Ulang",
"nsfw_content": "NSFW",
@ -241,9 +242,9 @@
"always_warn": "Selalu memperingatkan"
},
"theme": {
"system": "Device settings",
"light": "Light",
"dark": "Dark"
"system": "Pengaturan perangkat",
"light": "Ringan",
"dark": "Gelap"
},
"feedback_success": "Email berhasil dibuka",
"feedback_fail": "Klien email tidak bisa dibuka",
@ -286,7 +287,7 @@
"friends": "Teman",
"communities": "Komunitas",
"popup_postfix": "Diposting",
"scroll_top": "Scroll To Top"
"scroll_top": "Gulir ke Atas"
},
"side_menu": {
"profile": "Profil",
@ -305,7 +306,7 @@
"add_an_existing_account": "Tambahkan akun yang ada",
"accounts": "Akun",
"refer": "Rekomendasikan Dan Dapatkan",
"qr": "QR Scan"
"qr": "Scan QR"
},
"header": {
"title": "Login untuk menyesuaikan feed Anda",
@ -316,7 +317,7 @@
"search": "Cari",
"update": "Pembaruan",
"reply": "Balas",
"schedule": "Schedule"
"schedule": "Jadwal"
},
"editor": {
"title": "Judul",
@ -338,7 +339,7 @@
"limited_lastchar": "Tag harus diakhiri dengan huruf atau angka",
"setting_schedule": "Waktu Penjadwalan",
"setting_reward": "Hadiah",
"setting_reblog": "Reblog",
"setting_reblog": "Tampilkan kembali",
"setting_beneficiary": "Penerima manfaat",
"setting_thumb": "Atur Gambar Mini",
"reward_default": "Default 50% / 50%",
@ -364,27 +365,27 @@
"draft_save_success": "Draf Disimpan",
"draft_save_fail": "Gagal menyimpan draf",
"select_thumb": "Pilih Thumbnail Postingan",
"add_more_imgs": "Add more images to post",
"add_more_imgs": "Tambahkan banyak foto dalam postingan",
"two_thumbs_required": "Tambahkan lebih banyak gambar di postinganmu sebelum mengatur thumbnail",
"scheduled_for": "Scheduled For",
"scheduled_immediate": "Immediate",
"scheduled_later": "Later",
"scheduled_for": "Dijadwalkan untuk",
"scheduled_immediate": "Segera",
"scheduled_later": "Nanti",
"settings_title": "Post Options",
"done": "DONE",
"draft_save_title": "Saving Draft",
"draft_update": "Update current draft",
"draft_save_new": "Save as new draft",
"done": "SELESAI",
"draft_save_title": "Simpan Konsep",
"draft_update": "Perbarui konsep ini",
"draft_save_new": "Simpan sebagai konsep baru",
"label": "Label",
"enter_label_placeholder": "Enter Label (Optional)",
"enter_label_placeholder": "Label (Opsional)",
"url": "URL",
"enter_url_placeholder": "Enter URL",
"link_type_text": "Type of Link",
"insert_link": "Insert Link",
"preview": "Preview",
"invalid_url_error": "Please insert valid url",
"plain": "Plain",
"enter_url_placeholder": "Masukkan URL",
"link_type_text": "Jenis Tautan",
"insert_link": "Masukkan Tautan",
"preview": "Tinjauan",
"invalid_url_error": "Masukkan url yang valid",
"plain": "Polos",
"video": "Video",
"image": "Image"
"image": "Gambar"
},
"snippets": {
"label_no_snippets": "Cuplikan Tidak Ditemukan",
@ -407,10 +408,10 @@
"title": "Gambar Diunggah",
"title_remove_confirmation": "Hapus gambar",
"btn_add": "Gambar",
"btn_insert": "INSERT",
"btn_delete": "DELETE",
"btn_insert": "MASUKKAN",
"btn_delete": "HAPUS",
"message_failed": "Gagal mengunggah gambar",
"failed_count": "Failed to upload {failedCount} of {totalCount} selected image(s)"
"failed_count": "Gagal mengunggah {failedCount} dari {totalCount} gambar yang dipilih"
},
"pincode": {
"enter_text": "Masukkan PIN untuk membuka kunci",
@ -419,7 +420,8 @@
"forgot_text": "Oh, saya lupa...",
"pin_not_matched": "PIN tidak cocok, Tolong coba lagi.",
"attempts_postfix": "percobaan gagal",
"message_reset_warning": "Data pengguna akan dihapus pada percobaan berikutnya"
"message_reset_warning": "Data pengguna akan dihapus pada percobaan berikutnya",
"biometric_desc": "Pindai sidik jari anda pada alat pemindai untuk melanjutkan"
},
"alert": {
"success": "Sukses!",
@ -485,12 +487,12 @@
"update": "Perbaharui sekarang",
"remind_later": "Ingatkan nanti",
"failed_to_open": "Gagal membuka sebuah tautan",
"restart_ecency": "Restart Ecency?",
"restart_ecency_desc": "Applying changes will require a restart.",
"invalid_response": "Could not process request, Try again later.",
"wallet_updating": "Wallet update in progress, try again as update finishes",
"claim_failed": "Failed to claim rewards, {message}\nTry again or write to support@ecency.com",
"connection_issues": "The server is unreachable, please check your connection and try again."
"restart_ecency": "Muat ulang Ecency?",
"restart_ecency_desc": "Perubahan yang dilakukan memerlukan pemuatan ulang.",
"invalid_response": "Tidak dapat memproses permintaan Anda, coba lagi nanti.",
"wallet_updating": "Pembaruan dompet sedang dalam pengerjaan, coba lagi ketika pembaruan sudah selesai",
"claim_failed": "Gagal mengklaim hadiah, {message}\nCoba lagi atau tanya ke support@ecency.com",
"connection_issues": "Server tidak dapat diakses, silakan periksa koneksi anda dan coba kembali."
},
"post": {
"reblog_alert": "Anda yakin, anda ingin me-reblog?",
@ -522,10 +524,10 @@
"deleted": "Tulisan terjadwal dihapus",
"move": "Pindahkan ke konsep",
"moved": "Pindahkan ke konsep",
"pending": "Pending",
"postponed": "Postponed",
"published": "Published",
"error": "Error"
"pending": "Tertunda",
"postponed": "Ditunda",
"published": "Diterbitkan",
"error": "Kesalahan"
},
"bookmarks": {
"title": "Tandai",
@ -563,7 +565,7 @@
"beneficiaries": "Penerima manfaat",
"warn_zero_payout": "Jumlah harus mencapai $ 0,02 untuk pembayaran",
"breakdown": "Kerusakan",
"max_accepted": "Max Accepted"
"max_accepted": "Jumlah maksimum yang diterima"
},
"post_dropdown": {
"copy": "salin tautan",
@ -574,15 +576,16 @@
"promote": "promosikan",
"boost": "menaikkan",
"report": "laporan",
"pin-blog": "Pin to blog",
"unpin-blog": "Unpin from blog",
"pin-community": "Pin to community",
"unpin-community": "Unpin from community",
"edit-history": "Edit History"
"pin-blog": "Sematkan ke blog",
"unpin-blog": "Lepas sematan di blog",
"pin-community": "Semat untuk komunitas",
"unpin-community": "Lepaskan sematan dari komunitas",
"edit-history": "Riwayat Penyuntingan"
},
"deep_link": {
"no_existing_user": "Tidak ada pengguna yang ada",
"no_existing_post": "Tidak ada post yang ada"
"no_existing_post": "Tidak ada post yang ada",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Kiriman",
@ -621,7 +624,7 @@
"stop_information": "Anda yakin ingin berhenti?",
"percent": "Persen",
"auto_vests": "Vests Otomatis",
"vests": "Vests",
"vests": "Rompi",
"save": "Simpan",
"percent_information": "Informasi persen",
"next": "LANJUT",
@ -632,19 +635,19 @@
"stop": "Berhenti",
"sc_power_down_error": "Fitur ini belum diimplementasikan untuk login dengan Hivesigner",
"address_view": "Lihat alamat",
"already_delegated": "Already delegated to ",
"remain_hp": "Remaining HP",
"account_detail_head": "Account Details",
"account_detail_subhead": "Enter username for HIVE Power delegation",
"delegat_detail_head": "Delegation Details",
"delegat_detail_subhead": "New amount overwrites already delegated HIVE Power ",
"new_amount": "New Amount",
"review": "REVIEW",
"confirm": "Confirm Delegation",
"already_delegated": "Telah didelegasikan pada ",
"remain_hp": "Sisa HP",
"account_detail_head": "Rincian Akun",
"account_detail_subhead": "Masukkan nama pengguna untuk mendelegasikan HIVE Power",
"delegat_detail_head": "Detil Delegasi",
"delegat_detail_subhead": "Menuliskan jumlah baru HIVE Power yang didelegasikan ",
"new_amount": "Nilai Baru",
"review": "TINJAUAN",
"confirm": "Konfirmasikan Delegasi",
"confirm_summary": "Delegate {hp} HP ({vests} VESTS) To @{delegator} from @{delegatee} ",
"confirm_summary_para": "This will overwrite your previous delegation of {prev} HP to this user.",
"username_alert": "Username Error!",
"username_alert_detail": "Please select different username",
"username_alert": "Kesalahan nama pengguna!",
"username_alert_detail": "Silakan coba nama pengguna yang berbeda",
"power_down": "Menurunkan daya",
"power_down_amount_head": "Withdraw Amount",
"power_down_amount_subhead": "Enter amount for powering down hive power",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Codice PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reimposta il codice Pin",
"reset": "Reimposta",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, l'ho dimenticato...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Successo!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Utente non esistente",
"no_existing_post": "Post non esistente"
"no_existing_post": "Post non esistente",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Articoli",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PINコード",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "PINコードをリセット",
"reset": "リセット",
"nsfw_content": "閲覧注意",
@ -419,7 +420,8 @@
"forgot_text": "忘れてしまった場合",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "成功しました!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "ユーザーは存在しません",
"no_existing_post": "投稿は存在しません"
"no_existing_post": "投稿は存在しません",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "投稿",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Tangalt PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Aɛawed n tengalt PIN",
"reset": "Aɛawed",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Uh, ttuɣ-tt...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Ulac amseqdac",
"no_existing_post": "Ulac tasuffeɣt"
"no_existing_post": "Ulac tasuffeɣt",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Tisuffɣin",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN 코드",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "핀코드 리셋",
"reset": "초기화",
"nsfw_content": "안전하지 않은 콘텐츠",
@ -419,7 +420,8 @@
"forgot_text": "PIN 코드가 기억나지 않습니다...",
"pin_not_matched": "비밀번호가 일치하지 않습니다. 다시 시도해 주세요.",
"attempts_postfix": "실패 횟수",
"message_reset_warning": "다음 시도 실패 시 사용자 데이터가 삭제됩니다"
"message_reset_warning": "다음 시도 실패 시 사용자 데이터가 삭제됩니다",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "성공!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "존재하지 않는 사용자입니다",
"no_existing_post": "존재하지 않는 글입니다"
"no_existing_post": "존재하지 않는 글입니다",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "글 목록",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pînkod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Nûsazkirina PînKodê",
"reset": "Nûsaz bike",
"nsfw_content": "Naverokên Neguncav",
@ -419,7 +420,8 @@
"forgot_text": "Wey, Min ji bîr kiriye...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Serkevtî!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Bikarhêner tune ye",
"no_existing_post": "Şandî tune ye"
"no_existing_post": "Şandî tune ye",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Şandî",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Кайра баштоо",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegacijos"
},
"pincode": "PIN kodas",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Iš naujo nustatyti Pin kodą",
"reset": "Atstatyti",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oi, pamiršau...",
"pin_not_matched": "PIN kodas nesutampa. Bandykite dar kartą.",
"attempts_postfix": "nepavykę bandymas(ai)",
"message_reset_warning": "Naudotojo duomenys bus ištrinti su sekančiu nesėkmingu bandymu"
"message_reset_warning": "Naudotojo duomenys bus ištrinti su sekančiu nesėkmingu bandymu",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Sėkmė!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Nėra tokio vartotojo",
"no_existing_post": "Nėra tokio įrašo"
"no_existing_post": "Nėra tokio įrašo",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Įrašai",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Tetapkan semula",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Aduh! Terlupa lah...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Berjaya!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Pengguna tidak wujud",
"no_existing_post": "Pos tidak wujud"
"no_existing_post": "Pos tidak wujud",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Pos",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, ik ben het vergeten...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Gelukt!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Geen bestaande gebruiker",
"no_existing_post": "Geen bestaand artikel"
"no_existing_post": "Geen bestaand artikel",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Format your pin code",
"reset": "Reset",
"nsfw_content": "E no good to dey watch am outside",
@ -419,7 +420,8 @@
"forgot_text": "Chai, I don forget am...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "E don Successful!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "The person no exist",
"no_existing_post": "The post no exist"
"no_existing_post": "The post no exist",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Tori",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Resetuj kod Pin",
"reset": "Zresetuj",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Och, zapomniałem...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Udało się!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Brak istniejącego użytkownika",
"no_existing_post": "Brak istniejącego wpisu"
"no_existing_post": "Brak istniejącego wpisu",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Wpisy",

View File

@ -229,6 +229,7 @@
"delegations": "Delegações"
},
"pincode": "Código PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Redefinir o código Pin",
"reset": "Reiniciar",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, esqueci disso...",
"pin_not_matched": "PIN incorreto. Por favor, tente novamente.",
"attempts_postfix": "tentativa(s) errada(s)",
"message_reset_warning": "Os dados do usuário serão apagados na próxima tentativa mal-sucedida"
"message_reset_warning": "Os dados do usuário serão apagados na próxima tentativa mal-sucedida",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Sucesso!",
@ -490,7 +492,7 @@
"invalid_response": "Não foi possível processar o pedido. Tente mais tarde.",
"wallet_updating": "Atualização da carteira em andamento. Tente novamente quando terminada",
"claim_failed": "Falha ao reivindicar recompensas, {message}\nTente novamente ou escreva para support@ecency.com",
"connection_issues": "The server is unreachable, please check your connection and try again."
"connection_issues": "O servidor está inacessível. Por favor, verifique sua conexão e tente novamente."
},
"post": {
"reblog_alert": "Tem certeza de que deseja reblogar?",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Usuário não existe",
"no_existing_post": "Post não existe"
"no_existing_post": "Post não existe",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",
@ -637,7 +640,7 @@
"account_detail_head": "Detalhes da Conta",
"account_detail_subhead": "Digite o nome da conta para delegação de HIVE Power",
"delegat_detail_head": "Detalhes da Delegação",
"delegat_detail_subhead": "New amount overwrites already delegated HIVE Power ",
"delegat_detail_subhead": "Nova quantia substitui a quantidade de Poder HIVE já delegado ",
"new_amount": "Nova Quantia",
"review": "REVER",
"confirm": "Confirmar Delegação",
@ -655,10 +658,10 @@
"powering_down_info": "O próximo power down será em {days} dias, {hp} HIVE",
"invalid_amount": "Quantia Inválida",
"invalid_amount_desc": "Por favor, insira uma quantia válida",
"account_select_title": "Account Details",
"account_select_description": "Operations related to funds are irreversible, make sure receivers username is correct",
"amount_select_title": "Transfer Details",
"amount_select_description": "Enter transfer amount within maximum available balance and must be greater than 0.001"
"account_select_title": "Detalhes da Conta",
"account_select_description": "Operações de envio monetário são irreversíveis. Certifique-se que o nome da conta dos destinatários está correto",
"amount_select_title": "Detalhes da Transferência",
"amount_select_description": "Insira uma quantia a ser transferida dentro do seu saldo disponível. O valor deverá ser superior a 0.001"
},
"boost": {
"title": "Obter Pontos",
@ -787,8 +790,8 @@
"line3_heading": "Junte-se às comunidades da Ecency!",
"line3_body": "Crie e seja dono de uma comunidade. Seja recompensado e recompense.",
"get_started": "Comece agora!",
"terms_description": "By accepting, you agree to our Terms of Service and Privacy Policies.",
"terms_text": "Read Here!"
"terms_description": "Ao aceitar, você concorda com nossos Termos de Serviço e Políticas de Privacidade.",
"terms_text": "Leia Aqui!"
},
"time": {
"second": "segundos",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Resetare Cod Pin",
"reset": "Resetare",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, am uitat...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Succes!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Utilizator inexistent",
"no_existing_post": "Utilizator inexistent"
"no_existing_post": "Utilizator inexistent",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Postări",

View File

@ -229,6 +229,7 @@
"delegations": "Делегации"
},
"pincode": "Пинкод",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Сбросить пин-код",
"reset": "Сбросить",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Запамятовал...",
"pin_not_matched": "Пароли не совпадают, попробуйте еще раз.",
"attempts_postfix": "неудачные попытки",
"message_reset_warning": "Данные пользователя будут удалены при следующей неудачной попытке"
"message_reset_warning": "Данные пользователя будут удалены при следующей неудачной попытке",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Успех!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Несуществующий пользователь",
"no_existing_post": "Несуществующий пост"
"no_existing_post": "Несуществующий пост",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Посты",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Ponastavi PIN kodo",
"reset": "Ponastavi",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN kod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Resetuj Pin kod",
"reset": "Resetuj",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Jao, zaboravio sam...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Uspešno!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Nema postojećih korisnika",
"no_existing_post": "Nema postojećih postova"
"no_existing_post": "Nema postojećih postova",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Postovi",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegasyonlar"
},
"pincode": "Pinkod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Pin Kodunu Sıfırla",
"reset": "Sifirla",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Of! unuttum...",
"pin_not_matched": "PIN eşleşmiyor, Lütfen tekrar deneyin.",
"attempts_postfix": "hatalı deneme(ler)",
"message_reset_warning": "Bir sonraki hatalı denemede kullanıcı verisi silinecek"
"message_reset_warning": "Bir sonraki hatalı denemede kullanıcı verisi silinecek",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Başarılı!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Kullanici Bulunamadi",
"no_existing_post": "Mevcut yayın yok"
"no_existing_post": "Mevcut yayın yok",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Gönderi",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Скинути Pin-код",
"reset": "Скинути",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Ой, я його забув...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Успіх!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "Неіснуючий користувач",
"no_existing_post": "Неіснуючий допис"
"no_existing_post": "Неіснуючий допис",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Дописи",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

View File

@ -1,39 +1,39 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"author_reward": "Author Reward",
"comment_benefactor_reward": "Benefactor Reward",
"claim_reward_balance": "Claim Reward ",
"transfer": "Transfer",
"power_up": "To Vesting",
"transfer_from_savings": "From Savings",
"withdraw_savings": "Withdraw Savings",
"withdraw_vesting": "Power Down",
"open_order": "Open Order",
"fill_order": "Fill Order",
"curation_reward": "Kuratorlik mukofoti",
"author_reward": "Avtorlik mukofoti",
"comment_benefactor_reward": "Benefitsiar mukofoti",
"claim_reward_balance": "Mukofotlarni olish ",
"transfer": "O'tkazma",
"power_up": "Sarmoya kiritish",
"transfer_from_savings": "Jamg'armadan",
"withdraw_savings": "J'amg'armadan yechib olish",
"withdraw_vesting": "Kuchni pasaytirish",
"open_order": "Ochiq buyurtma",
"fill_order": "Buyurtmani to'ldirish",
"post": "Post",
"comment": "Comment",
"checkin": "Check-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"comment": "Izoh",
"checkin": "Kirish",
"vote": "Ovoz berish",
"reblog": "Qayta bloglash",
"login": "Kirish",
"incoming_transfer_title": "Kiruvchi transfer",
"outgoing_transfer_title": "Chiquvchi transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegations": "Delegations",
"delegation_title": "Delegation reward",
"delegation_desc": "Earn Points everyday for delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn Points",
"checkin_extra_title": "Usage bonus",
"delegation": "Delegatsiya",
"delegations": "Delegatsiyalar",
"delegation_title": "Delegatsiya mukofoti",
"delegation_desc": "Kunlik delegatsiya uchun ball oling",
"post_title": "Post uchun ballar",
"comment_title": "Izoh uchun ballar",
"vote_title": "Ovoz uchun ballar",
"reblog_title": "Qayta bloglash uchun ballar",
"login_title": "Ro'yxatdan o'tish uchun ball",
"checkin_title": "Onlayn bo'lish uchun ball",
"referral": "Taklif",
"referral_title": "Taklif mukofoti",
"referral_desc": "Do'stlaringizni taklif qiling va ball ishlang",
"checkin_extra_title": "Foydalanish bonusi",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
@ -229,6 +229,7 @@
"delegations": "Delegations"
},
"pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)",
"message_reset_warning": "User data will be wiped on next failed attempt"
"message_reset_warning": "User data will be wiped on next failed attempt",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
},
"alert": {
"success": "Success!",
@ -582,7 +584,8 @@
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "No existing post",
"invalid_link": "Url is invalid, you may try again with valid url or try opening it in web browser"
},
"search": {
"posts": "Posts",

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