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:allowBackup="false"
android:largeHeap="true" android:largeHeap="true"
android:theme="@style/AppTheme"> 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 <activity
android:name=".MainActivity" android:name=".MainActivity"
android:launchMode="singleTask" android:launchMode="singleTask"
android:label="@string/app_name" android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:windowSoftInputMode="adjustResize"> android:windowSoftInputMode="adjustResize"
<intent-filter> android:exported="true">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter android:label="Ecency" android:autoVerify="true"> <intent-filter android:label="Ecency" android:autoVerify="true">
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
@ -88,6 +97,11 @@
android:host="ecency.com" android:host="ecency.com"
android:path="/login" android:path="/login"
/> />
<data
android:scheme="https"
android:host="ecency.com"
android:path="/purchase"
/>
</intent-filter> </intent-filter>
<intent-filter android:label="Ecency" > <intent-filter android:label="Ecency" >
<action android:name="android.intent.action.VIEW" /> <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 com.swmansion.gesturehandler.react.RNGestureHandlerEnabledRootView;
import android.content.Intent; import android.content.Intent;
import android.content.res.Configuration; import android.content.res.Configuration;
import org.devio.rn.splashscreen.SplashScreen;
import android.os.Bundle;
public class MainActivity extends ReactActivity { public class MainActivity extends ReactActivity {
/** /**
@ -33,6 +35,11 @@ public class MainActivity extends ReactActivity {
setIntent(intent); 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 //native side reference: https://github.com/facebook/react-native/issues/28823#issuecomment-642032481
@Override @Override
public void onConfigurationChanged(Configuration newConfig) { 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"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/> <background android:drawable="@drawable/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/> <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"> <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background"/> <background android:drawable="@drawable/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/> <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="splashBackground" type="color">#ffffff</item>
<item name="notification_icon" type="color">#ffffff</item> <item name="notification_icon" type="color">#ffffff</item>
<color name="primary_dark">#000000</color> <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> <resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowExitAnimation">@android:anim/fade_out</item> <!-- Customize your theme here. -->
<item name="android:editTextBackground">@android:color/transparent</item> <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> </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> </resources>

View File

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

View File

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

View File

@ -104,7 +104,6 @@
"react-native-keyboard-aware-scroll-view": "^0.9.1", "react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-level-fs": "^3.0.0", "react-native-level-fs": "^3.0.0",
"react-native-linear-gradient": "^2.4.2", "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-media-controls": "^2.3.0",
"react-native-modal": "11.5.6", "react-native-modal": "11.5.6",
"react-native-modal-dropdown": "^1.0.2", "react-native-modal-dropdown": "^1.0.2",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -2,7 +2,6 @@ import React, { useState, useEffect, useRef, useReducer } from 'react';
import { useDispatch, useSelector } from 'react-redux'; import { useDispatch, useSelector } from 'react-redux';
import { get, isEmpty } from 'lodash'; import { get, isEmpty } from 'lodash';
import unionBy from 'lodash/unionBy'; import unionBy from 'lodash/unionBy';
import Matomo from 'react-native-matomo-sdk';
import { useIntl } from 'react-intl'; import { useIntl } from 'react-intl';
import { Alert, AppState } from 'react-native'; 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 = () => { const _handleOnRefreshPosts = () => {

View File

@ -5,7 +5,6 @@ import { Comments, NoPost } from '../..';
import { useAppSelector } from '../../../hooks'; import { useAppSelector } from '../../../hooks';
import { getAccountPosts } from '../../../providers/hive/dhive'; import { getAccountPosts } from '../../../providers/hive/dhive';
import styles from '../profileStyles'; import styles from '../profileStyles';
import Matomo from 'react-native-matomo-sdk';
import {unionBy } from 'lodash'; import {unionBy } from 'lodash';
interface CommentsTabContentProps { interface CommentsTabContentProps {
@ -57,13 +56,6 @@ const CommentsTabContent = ({isOwnProfile, username, type, onScroll, selectedUse
sort:type 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) const result = await getAccountPosts(query)
let _comments:any[] = refresh ? result : unionBy(data, result, 'permlink'); let _comments:any[] = refresh ? result : unionBy(data, result, 'permlink');

View File

@ -1,6 +1,5 @@
import { getAccountPosts, getPost, getRankedPosts } from "../../../providers/hive/dhive"; import { getAccountPosts, getPost, getRankedPosts } from "../../../providers/hive/dhive";
import { filterLatestPosts, getUpdatedPosts } from "./tabbedPostsHelpers"; import { filterLatestPosts, getUpdatedPosts } from "./tabbedPostsHelpers";
import Matomo from 'react-native-matomo-sdk';
import { LoadPostsOptions } from "./tabbedPostsModels"; import { LoadPostsOptions } from "./tabbedPostsModels";
import { getPromotedEntries } from "../../../providers/ecency/ecency"; import { getPromotedEntries } from "../../../providers/ecency/ecency";
@ -179,23 +178,6 @@ export const loadPosts = async ({
isRefreshing:false, 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', minWidth: '$deviceWidth / 1.9',
height: 44, height: 44,
borderRadius: 30, borderRadius: 30,
backgroundColor: '$primaryDarkText', backgroundColor: '$darkGrayBackground',
margin: 5, margin: 5,
shadowOffset: { shadowOffset: {
height: 5, height: 5,

View File

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

View File

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

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Kode PIN", "pincode": "Kode PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Atôe ulang", "reset": "Atôe ulang",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, lôn tuwoe nyan...", "forgot_text": "Oh, lôn tuwoe nyan...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Meuhasè!", "success": "Meuhasè!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Hana uréung pakék", "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": { "search": {
"posts": "Post", "posts": "Post",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "رمز PIN", "pincode": "رمز PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "إعادة تعيين رمز Pin", "reset_pin": "إعادة تعيين رمز Pin",
"reset": "إعادة", "reset": "إعادة",
"nsfw_content": "ليس آمنًا للمشاهدة", "nsfw_content": "ليس آمنًا للمشاهدة",
@ -419,7 +420,8 @@
"forgot_text": "أوه، لقد نسيت ذلك...", "forgot_text": "أوه، لقد نسيت ذلك...",
"pin_not_matched": "كلمة المرور ليست متطابقة. الرجاء المحاولة مرة أخرى.", "pin_not_matched": "كلمة المرور ليست متطابقة. الرجاء المحاولة مرة أخرى.",
"attempts_postfix": "المحاولات الفاشلة", "attempts_postfix": "المحاولات الفاشلة",
"message_reset_warning": "سيتم مسح بيانات المستخدم في المحاولة الفاشلة التالية" "message_reset_warning": "سيتم مسح بيانات المستخدم في المحاولة الفاشلة التالية",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
}, },
"alert": { "alert": {
"success": "تم بنجاح!", "success": "تم بنجاح!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "لا يوجد أي مستخدم حاليا", "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": { "search": {
"posts": "منشورات", "posts": "منشورات",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN kod", "pincode": "PIN kod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Pin Kodu Sıfırla", "reset_pin": "Pin Kodu Sıfırla",
"reset": "Sıfırla", "reset": "Sıfırla",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Unutmuşam...", "forgot_text": "Unutmuşam...",
"pin_not_matched": "PIN uyğun gəlmir, zəhmət olmasa yenidən sınayın.", "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)", "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": { "alert": {
"success": "Uğurlu!", "success": "Uğurlu!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Heç bir istifadəçi yoxdur", "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": { "search": {
"posts": "Göndərişlər", "posts": "Göndərişlər",

View File

@ -229,6 +229,7 @@
"delegations": "Делегация/отдаване" "delegations": "Делегация/отдаване"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Анулирай пин код", "reset_pin": "Анулирай пин код",
"reset": "Изчисти", "reset": "Изчисти",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "О, забравих го ...", "forgot_text": "О, забравих го ...",
"pin_not_matched": "ПИН кодовете не съвпадат. Моля, опитайте отново.", "pin_not_matched": "ПИН кодовете не съвпадат. Моля, опитайте отново.",
"attempts_postfix": "неуспешни опити", "attempts_postfix": "неуспешни опити",
"message_reset_warning": "Информацията ще бъде изтрита при следваща грешка" "message_reset_warning": "Информацията ще бъде изтрита при следваща грешка",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
}, },
"alert": { "alert": {
"success": "Успех", "success": "Успех",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Съществуващ потребител", "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": { "search": {
"posts": "Публикации", "posts": "Публикации",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "পিন কোডটি রিসেট করুন", "reset_pin": "পিন কোডটি রিসেট করুন",
"reset": "রিসেট", "reset": "রিসেট",
"nsfw_content": "এনএসএফডাব্লু", "nsfw_content": "এনএসএফডাব্লু",
@ -419,7 +420,8 @@
"forgot_text": "ওহ, আমি এটি ভুলে গিয়েছিলাম ...", "forgot_text": "ওহ, আমি এটি ভুলে গিয়েছিলাম ...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "সফল!", "success": "সফল!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "কোন বিদ্যমান ব্যবহারকারী", "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": { "search": {
"posts": "পোস্ট", "posts": "পোস্ট",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Povjeravanja" "delegations": "Povjeravanja"
}, },
"pincode": "Pin kod", "pincode": "Pin kod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Poništi Pin kod", "reset_pin": "Poništi Pin kod",
"reset": "Poništi", "reset": "Poništi",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, zaboravio sam...", "forgot_text": "Oh, zaboravio sam...",
"pin_not_matched": "PIN se ne podudara, pokušajte ponovo.", "pin_not_matched": "PIN se ne podudara, pokušajte ponovo.",
"attempts_postfix": "neuspjeli pokušaj(i)", "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": { "alert": {
"success": "Uspjeh!", "success": "Uspjeh!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Nema postojećeg korisnika", "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": { "search": {
"posts": "Objave", "posts": "Objave",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Pin Code festlegen", "reset_pin": "Pin Code festlegen",
"reset": "Zurücksetzen", "reset": "Zurücksetzen",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, ich habe ihn vergessen...", "forgot_text": "Oh, ich habe ihn vergessen...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Erfolgreich!", "success": "Erfolgreich!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Kein vorhandener Benutzer", "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": { "search": {
"posts": "Beiträge", "posts": "Beiträge",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -585,7 +585,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Código PIN", "pincode": "Código PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reiniciar Código Pin", "reset_pin": "Reiniciar Código Pin",
"reset": "Reiniciar", "reset": "Reiniciar",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegaciones" "delegations": "Delegaciones"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Desbloquear por Huella Dactilar / Reconocimiento Facial",
"reset_pin": "Reiniciar código pin", "reset_pin": "Reiniciar código pin",
"reset": "Reiniciar", "reset": "Reiniciar",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, me olvidé...", "forgot_text": "Oh, me olvidé...",
"pin_not_matched": "El PIN no coincide. Inténtelo de nuevo.", "pin_not_matched": "El PIN no coincide. Inténtelo de nuevo.",
"attempts_postfix": "intento(s) fallidos", "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": { "alert": {
"success": "Conseguido!", "success": "Conseguido!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Usuario no existe", "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": { "search": {
"posts": "Publicaciones", "posts": "Publicaciones",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN code", "pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -91,24 +91,24 @@
"fill_transfer_from_savings": "Hoius alustatud", "fill_transfer_from_savings": "Hoius alustatud",
"fill_vesting_withdraw": "Hive Poweri vähendamist alustatud", "fill_vesting_withdraw": "Hive Poweri vähendamist alustatud",
"ecency": { "ecency": {
"title": "Points", "title": "Punktid",
"name": "Ecency Points", "name": "Ecency punktid",
"buy": "GET POINTS" "buy": "OSTA PUNKTE"
}, },
"savinghive": { "savinghive": {
"title": "HIVE Savings" "title": "HIVE Hoius"
}, },
"savinghbd": { "savinghbd": {
"title": "HBD Savings" "title": "HBD Hoius"
}, },
"hive": { "hive": {
"title": "HIVE", "title": "HIVE",
"name": "Hive Token", "name": "Hive Token",
"buy": "GET HIVE" "buy": "OSTA HIVE"
}, },
"hbd": { "hbd": {
"title": "HBD", "title": "HBD",
"buy": "GET HBD" "buy": "OSTA HBD"
}, },
"hive_power": { "hive_power": {
"title": "HIVE POWER", "title": "HIVE POWER",
@ -124,7 +124,7 @@
}, },
"last_updated": "Last Updated:", "last_updated": "Last Updated:",
"updating": "Updating...", "updating": "Updating...",
"coin_details": "Details", "coin_details": "Üksikasjad",
"change": "Change", "change": "Change",
"activities": "Activities", "activities": "Activities",
"savings_withdrawal": "Pending Withdrawals", "savings_withdrawal": "Pending Withdrawals",
@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Lähtesta Pin-kood", "reset_pin": "Lähtesta Pin-kood",
"reset": "Algseisundi Taastamine", "reset": "Algseisundi Taastamine",
"nsfw_content": "18+", "nsfw_content": "18+",
@ -419,7 +420,8 @@
"forgot_text": "Ups, ma unustasin...", "forgot_text": "Ups, ma unustasin...",
"pin_not_matched": "Vale PIN, palun proovi uuesti.", "pin_not_matched": "Vale PIN, palun proovi uuesti.",
"attempts_postfix": "ebaõnnestunud katse(d)", "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": { "alert": {
"success": "Edukas!", "success": "Edukas!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Kasutaja ei eksisteeri", "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": { "search": {
"posts": "Postitused", "posts": "Postitused",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "تنظیم مجدد پن کد", "reset_pin": "تنظیم مجدد پن کد",
"reset": "راه اندازی مجدد", "reset": "راه اندازی مجدد",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "آه، فراموشش کردم...", "forgot_text": "آه، فراموشش کردم...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "با موفقیت!", "success": "با موفقیت!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "کاربری موجود نیست", "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": { "search": {
"posts": "پست‌ها", "posts": "پست‌ها",

View File

@ -229,6 +229,7 @@
"delegations": "Valtuutukset" "delegations": "Valtuutukset"
}, },
"pincode": "PIN-koodi", "pincode": "PIN-koodi",
"biometric": "Sormenjälki / Kasvontunnistus",
"reset_pin": "Nollaa Pin-koodi", "reset_pin": "Nollaa Pin-koodi",
"reset": "Nollaa", "reset": "Nollaa",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -379,7 +380,7 @@
"url": "URL", "url": "URL",
"enter_url_placeholder": "Kirjoita URL-osoite", "enter_url_placeholder": "Kirjoita URL-osoite",
"link_type_text": "Linkin tyyppi", "link_type_text": "Linkin tyyppi",
"insert_link": "Insert Link", "insert_link": "Lisää linkki",
"preview": "Esikatselu", "preview": "Esikatselu",
"invalid_url_error": "Syötä kelvollinen URL", "invalid_url_error": "Syötä kelvollinen URL",
"plain": "Yksinkertainen", "plain": "Yksinkertainen",
@ -419,7 +420,8 @@
"forgot_text": "Unohdin sen...", "forgot_text": "Unohdin sen...",
"pin_not_matched": "PIN-koodi ei täsmää, yritä uudelleen.", "pin_not_matched": "PIN-koodi ei täsmää, yritä uudelleen.",
"attempts_postfix": "epäonnistuneet yritykset", "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": { "alert": {
"success": "Onnistui!", "success": "Onnistui!",
@ -490,7 +492,7 @@
"invalid_response": "Pyyntöä ei voitu käsitellä, Yritä myöhemmin uudelleen.", "invalid_response": "Pyyntöä ei voitu käsitellä, Yritä myöhemmin uudelleen.",
"wallet_updating": "Lompakon päivitys käynnissä, yritä uudelleen päivityksen valmistuessa", "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", "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": { "post": {
"reblog_alert": "Haluatko varmasti jakaa?", "reblog_alert": "Haluatko varmasti jakaa?",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Käyttäjää ei ole", "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": { "search": {
"posts": "Julkaisut", "posts": "Julkaisut",
@ -637,7 +640,7 @@
"account_detail_head": "Tilin tiedot", "account_detail_head": "Tilin tiedot",
"account_detail_subhead": "Anna HIVE Power -valtuutuksen saajan käyttäjänimi", "account_detail_subhead": "Anna HIVE Power -valtuutuksen saajan käyttäjänimi",
"delegat_detail_head": "Valtuutuksen tiedot", "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ä", "new_amount": "Uusi määrä",
"review": "VAHVISTA", "review": "VAHVISTA",
"confirm": "Vahvista valtuutus", "confirm": "Vahvista valtuutus",
@ -655,10 +658,10 @@
"powering_down_info": "Seuraavaan tehonalennukseen on {days} päivää, {hp} HIVE", "powering_down_info": "Seuraavaan tehonalennukseen on {days} päivää, {hp} HIVE",
"invalid_amount": "Virheellinen määrä", "invalid_amount": "Virheellinen määrä",
"invalid_amount_desc": "Syötä kelvollinen arvo", "invalid_amount_desc": "Syötä kelvollinen arvo",
"account_select_title": "Account Details", "account_select_title": "Tilitiedot",
"account_select_description": "Operations related to funds are irreversible, make sure receivers username is correct", "account_select_description": "Varoihin liittyvät toiminnot ovat peruuttamattomia. Varmista, että vastaanottajan käyttäjätunnus on oikea",
"amount_select_title": "Transfer Details", "amount_select_title": "Siirron Tiedot",
"amount_select_description": "Enter transfer amount within maximum available balance and must be greater than 0.001" "amount_select_description": "Syötä siirtosumma maksimaalisen käytettävissä olevan saldon rajoissa ja määrän tulee olla suurempi kuin 0.001"
}, },
"boost": { "boost": {
"title": "Hanki pisteitä", "title": "Hanki pisteitä",
@ -787,8 +790,8 @@
"line3_heading": "Liity Ecencyn yhteisöihin!", "line3_heading": "Liity Ecencyn yhteisöihin!",
"line3_body": "Rakenna omistamaasi yhteisöä, saa palkkioita ja palkitse muita.", "line3_body": "Rakenna omistamaasi yhteisöä, saa palkkioita ja palkitse muita.",
"get_started": "Aloitetaan!", "get_started": "Aloitetaan!",
"terms_description": "By accepting, you agree to our Terms of Service and Privacy Policies.", "terms_description": "Kirjautumalla sisään hyväksyt käyttöehtomme ja tietosuojamme periaatteet.",
"terms_text": "Read Here!" "terms_text": "Lue lisää!"
}, },
"time": { "time": {
"second": "s", "second": "s",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "I-reset ang Pin Code", "reset_pin": "I-reset ang Pin Code",
"reset": "I-reset", "reset": "I-reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Naku, nakalimutan ko...", "forgot_text": "Naku, nakalimutan ko...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Tagumpay!", "success": "Tagumpay!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Walang makita na user", "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": { "search": {
"posts": "Mga post", "posts": "Mga post",

View File

@ -229,6 +229,7 @@
"delegations": "Délégations" "delegations": "Délégations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Réinitialisez le Code Pin", "reset_pin": "Réinitialisez le Code Pin",
"reset": "Réinitialiser", "reset": "Réinitialiser",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Ha, je l'ai oublié ...", "forgot_text": "Ha, je l'ai oublié ...",
"pin_not_matched": "Les codes PIN ne correspondent pas. Veuillez réessayer.", "pin_not_matched": "Les codes PIN ne correspondent pas. Veuillez réessayer.",
"attempts_postfix": "Tentatives échouées", "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": { "alert": {
"success": "Succés!", "success": "Succés!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Utilisateur inexistant", "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": { "search": {
"posts": "Publications", "posts": "Publications",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN kodus", "pincode": "PIN kodus",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Aftralagei", "reset": "Aftralagei",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "O, ik ufarmaudida...", "forgot_text": "O, ik ufarmaudida...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Warþ!", "success": "Warþ!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "קוד PIN", "pincode": "קוד PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "אתחל", "reset": "אתחל",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "אוי, אני שכחתי את זה...", "forgot_text": "אוי, אני שכחתי את זה...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "הצלחה!", "success": "הצלחה!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "המשתמש אינו קיים", "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": { "search": {
"posts": "העלאות", "posts": "העלאות",

View File

@ -229,6 +229,7 @@
"delegations": "डेलीगेशन्स" "delegations": "डेलीगेशन्स"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "पिन कोड रीसेट करें", "reset_pin": "पिन कोड रीसेट करें",
"reset": "पुनः नियोजन", "reset": "पुनः नियोजन",
"nsfw_content": "एनडीएफडब्ल्यू", "nsfw_content": "एनडीएफडब्ल्यू",
@ -419,7 +420,8 @@
"forgot_text": "ओह! मैं इसे भूल गया...", "forgot_text": "ओह! मैं इसे भूल गया...",
"pin_not_matched": "पिन मेल नहीं खाता, कृपया पुनः प्रयास करें।", "pin_not_matched": "पिन मेल नहीं खाता, कृपया पुनः प्रयास करें।",
"attempts_postfix": "असफल प्रयास", "attempts_postfix": "असफल प्रयास",
"message_reset_warning": "अगले असफल प्रयास पर उपयोगकर्ता डेटा मिटा दिया जाएगा" "message_reset_warning": "अगले असफल प्रयास पर उपयोगकर्ता डेटा मिटा दिया जाएगा",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
}, },
"alert": { "alert": {
"success": "सफल!", "success": "सफल!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "कोई विद्यमान उपयोगकर्ता नहीं", "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": { "search": {
"posts": "पोस्ट", "posts": "पोस्ट",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Resetiraj", "reset": "Resetiraj",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Uh, zaboravio sam...", "forgot_text": "Uh, zaboravio sam...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Uspjeh!", "success": "Uspjeh!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Ne postojeći korisnik", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN kód", "pincode": "PIN kód",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Pin kód beállítása", "reset_pin": "Pin kód beállítása",
"reset": "Visszaállítás", "reset": "Visszaállítás",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Ó, elfelejtettem...", "forgot_text": "Ó, elfelejtettem...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Sikerült!", "success": "Sikerült!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Nem létező felhasználó", "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": { "search": {
"posts": "Bejegyzések", "posts": "Bejegyzések",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN code", "pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

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

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Codice PIN", "pincode": "Codice PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reimposta il codice Pin", "reset_pin": "Reimposta il codice Pin",
"reset": "Reimposta", "reset": "Reimposta",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, l'ho dimenticato...", "forgot_text": "Oh, l'ho dimenticato...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Successo!", "success": "Successo!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Utente non esistente", "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": { "search": {
"posts": "Articoli", "posts": "Articoli",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PINコード", "pincode": "PINコード",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "PINコードをリセット", "reset_pin": "PINコードをリセット",
"reset": "リセット", "reset": "リセット",
"nsfw_content": "閲覧注意", "nsfw_content": "閲覧注意",
@ -419,7 +420,8 @@
"forgot_text": "忘れてしまった場合", "forgot_text": "忘れてしまった場合",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "成功しました!", "success": "成功しました!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "ユーザーは存在しません", "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": { "search": {
"posts": "投稿", "posts": "投稿",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Tangalt PIN", "pincode": "Tangalt PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Aɛawed n tengalt PIN", "reset_pin": "Aɛawed n tengalt PIN",
"reset": "Aɛawed", "reset": "Aɛawed",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Uh, ttuɣ-tt...", "forgot_text": "Uh, ttuɣ-tt...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Ulac amseqdac", "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": { "search": {
"posts": "Tisuffɣin", "posts": "Tisuffɣin",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

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

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pînkod", "pincode": "Pînkod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Nûsazkirina PînKodê", "reset_pin": "Nûsazkirina PînKodê",
"reset": "Nûsaz bike", "reset": "Nûsaz bike",
"nsfw_content": "Naverokên Neguncav", "nsfw_content": "Naverokên Neguncav",
@ -419,7 +420,8 @@
"forgot_text": "Wey, Min ji bîr kiriye...", "forgot_text": "Wey, Min ji bîr kiriye...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Serkevtî!", "success": "Serkevtî!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Bikarhêner tune ye", "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": { "search": {
"posts": "Şandî", "posts": "Şandî",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Кайра баштоо", "reset": "Кайра баштоо",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegacijos" "delegations": "Delegacijos"
}, },
"pincode": "PIN kodas", "pincode": "PIN kodas",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Iš naujo nustatyti Pin kodą", "reset_pin": "Iš naujo nustatyti Pin kodą",
"reset": "Atstatyti", "reset": "Atstatyti",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oi, pamiršau...", "forgot_text": "Oi, pamiršau...",
"pin_not_matched": "PIN kodas nesutampa. Bandykite dar kartą.", "pin_not_matched": "PIN kodas nesutampa. Bandykite dar kartą.",
"attempts_postfix": "nepavykę bandymas(ai)", "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": { "alert": {
"success": "Sėkmė!", "success": "Sėkmė!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Nėra tokio vartotojo", "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": { "search": {
"posts": "Įrašai", "posts": "Įrašai",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Tetapkan semula", "reset": "Tetapkan semula",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Aduh! Terlupa lah...", "forgot_text": "Aduh! Terlupa lah...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Berjaya!", "success": "Berjaya!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Pengguna tidak wujud", "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": { "search": {
"posts": "Pos", "posts": "Pos",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, ik ben het vergeten...", "forgot_text": "Oh, ik ben het vergeten...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Gelukt!", "success": "Gelukt!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Geen bestaande gebruiker", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN code", "pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Format your pin code", "reset_pin": "Format your pin code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "E no good to dey watch am outside", "nsfw_content": "E no good to dey watch am outside",
@ -419,7 +420,8 @@
"forgot_text": "Chai, I don forget am...", "forgot_text": "Chai, I don forget am...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "E don Successful!", "success": "E don Successful!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "The person no exist", "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": { "search": {
"posts": "Tori", "posts": "Tori",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Resetuj kod Pin", "reset_pin": "Resetuj kod Pin",
"reset": "Zresetuj", "reset": "Zresetuj",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Och, zapomniałem...", "forgot_text": "Och, zapomniałem...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Udało się!", "success": "Udało się!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Brak istniejącego użytkownika", "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": { "search": {
"posts": "Wpisy", "posts": "Wpisy",

View File

@ -229,6 +229,7 @@
"delegations": "Delegações" "delegations": "Delegações"
}, },
"pincode": "Código PIN", "pincode": "Código PIN",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Redefinir o código Pin", "reset_pin": "Redefinir o código Pin",
"reset": "Reiniciar", "reset": "Reiniciar",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, esqueci disso...", "forgot_text": "Oh, esqueci disso...",
"pin_not_matched": "PIN incorreto. Por favor, tente novamente.", "pin_not_matched": "PIN incorreto. Por favor, tente novamente.",
"attempts_postfix": "tentativa(s) errada(s)", "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": { "alert": {
"success": "Sucesso!", "success": "Sucesso!",
@ -490,7 +492,7 @@
"invalid_response": "Não foi possível processar o pedido. Tente mais tarde.", "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", "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", "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": { "post": {
"reblog_alert": "Tem certeza de que deseja reblogar?", "reblog_alert": "Tem certeza de que deseja reblogar?",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Usuário não existe", "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": { "search": {
"posts": "Posts", "posts": "Posts",
@ -637,7 +640,7 @@
"account_detail_head": "Detalhes da Conta", "account_detail_head": "Detalhes da Conta",
"account_detail_subhead": "Digite o nome da conta para delegação de HIVE Power", "account_detail_subhead": "Digite o nome da conta para delegação de HIVE Power",
"delegat_detail_head": "Detalhes da Delegação", "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", "new_amount": "Nova Quantia",
"review": "REVER", "review": "REVER",
"confirm": "Confirmar Delegação", "confirm": "Confirmar Delegação",
@ -655,10 +658,10 @@
"powering_down_info": "O próximo power down será em {days} dias, {hp} HIVE", "powering_down_info": "O próximo power down será em {days} dias, {hp} HIVE",
"invalid_amount": "Quantia Inválida", "invalid_amount": "Quantia Inválida",
"invalid_amount_desc": "Por favor, insira uma quantia válida", "invalid_amount_desc": "Por favor, insira uma quantia válida",
"account_select_title": "Account Details", "account_select_title": "Detalhes da Conta",
"account_select_description": "Operations related to funds are irreversible, make sure receivers username is correct", "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": "Transfer Details", "amount_select_title": "Detalhes da Transferência",
"amount_select_description": "Enter transfer amount within maximum available balance and must be greater than 0.001" "amount_select_description": "Insira uma quantia a ser transferida dentro do seu saldo disponível. O valor deverá ser superior a 0.001"
}, },
"boost": { "boost": {
"title": "Obter Pontos", "title": "Obter Pontos",
@ -787,8 +790,8 @@
"line3_heading": "Junte-se às comunidades da Ecency!", "line3_heading": "Junte-se às comunidades da Ecency!",
"line3_body": "Crie e seja dono de uma comunidade. Seja recompensado e recompense.", "line3_body": "Crie e seja dono de uma comunidade. Seja recompensado e recompense.",
"get_started": "Comece agora!", "get_started": "Comece agora!",
"terms_description": "By accepting, you agree to our Terms of Service and Privacy Policies.", "terms_description": "Ao aceitar, você concorda com nossos Termos de Serviço e Políticas de Privacidade.",
"terms_text": "Read Here!" "terms_text": "Leia Aqui!"
}, },
"time": { "time": {
"second": "segundos", "second": "segundos",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Resetare Cod Pin", "reset_pin": "Resetare Cod Pin",
"reset": "Resetare", "reset": "Resetare",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, am uitat...", "forgot_text": "Oh, am uitat...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Succes!", "success": "Succes!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Utilizator inexistent", "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": { "search": {
"posts": "Postări", "posts": "Postări",

View File

@ -229,6 +229,7 @@
"delegations": "Делегации" "delegations": "Делегации"
}, },
"pincode": "Пинкод", "pincode": "Пинкод",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Сбросить пин-код", "reset_pin": "Сбросить пин-код",
"reset": "Сбросить", "reset": "Сбросить",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Запамятовал...", "forgot_text": "Запамятовал...",
"pin_not_matched": "Пароли не совпадают, попробуйте еще раз.", "pin_not_matched": "Пароли не совпадают, попробуйте еще раз.",
"attempts_postfix": "неудачные попытки", "attempts_postfix": "неудачные попытки",
"message_reset_warning": "Данные пользователя будут удалены при следующей неудачной попытке" "message_reset_warning": "Данные пользователя будут удалены при следующей неудачной попытке",
"biometric_desc": "Scan your fingerprint on the device scanner to continue"
}, },
"alert": { "alert": {
"success": "Успех!", "success": "Успех!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Несуществующий пользователь", "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": { "search": {
"posts": "Посты", "posts": "Посты",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Ponastavi PIN kodo", "reset_pin": "Ponastavi PIN kodo",
"reset": "Ponastavi", "reset": "Ponastavi",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN code", "pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN kod", "pincode": "PIN kod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Resetuj Pin kod", "reset_pin": "Resetuj Pin kod",
"reset": "Resetuj", "reset": "Resetuj",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Jao, zaboravio sam...", "forgot_text": "Jao, zaboravio sam...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Uspešno!", "success": "Uspešno!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Nema postojećih korisnika", "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": { "search": {
"posts": "Postovi", "posts": "Postovi",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegasyonlar" "delegations": "Delegasyonlar"
}, },
"pincode": "Pinkod", "pincode": "Pinkod",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Pin Kodunu Sıfırla", "reset_pin": "Pin Kodunu Sıfırla",
"reset": "Sifirla", "reset": "Sifirla",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Of! unuttum...", "forgot_text": "Of! unuttum...",
"pin_not_matched": "PIN eşleşmiyor, Lütfen tekrar deneyin.", "pin_not_matched": "PIN eşleşmiyor, Lütfen tekrar deneyin.",
"attempts_postfix": "hatalı deneme(ler)", "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": { "alert": {
"success": "Başarılı!", "success": "Başarılı!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Kullanici Bulunamadi", "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": { "search": {
"posts": "Gönderi", "posts": "Gönderi",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "Pincode", "pincode": "Pincode",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Скинути Pin-код", "reset_pin": "Скинути Pin-код",
"reset": "Скинути", "reset": "Скинути",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Ой, я його забув...", "forgot_text": "Ой, я його забув...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Успіх!", "success": "Успіх!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "Неіснуючий користувач", "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": { "search": {
"posts": "Дописи", "posts": "Дописи",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN code", "pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

@ -229,6 +229,7 @@
"delegations": "Delegations" "delegations": "Delegations"
}, },
"pincode": "PIN code", "pincode": "PIN code",
"biometric": "Finger Print / Face Unlock",
"reset_pin": "Reset Pin Code", "reset_pin": "Reset Pin Code",
"reset": "Reset", "reset": "Reset",
"nsfw_content": "NSFW", "nsfw_content": "NSFW",
@ -419,7 +420,8 @@
"forgot_text": "Oh, I forgot it...", "forgot_text": "Oh, I forgot it...",
"pin_not_matched": "PIN do not match, Please try again.", "pin_not_matched": "PIN do not match, Please try again.",
"attempts_postfix": "failed attempt(s)", "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": { "alert": {
"success": "Success!", "success": "Success!",
@ -582,7 +584,8 @@
}, },
"deep_link": { "deep_link": {
"no_existing_user": "No existing user", "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": { "search": {
"posts": "Posts", "posts": "Posts",

View File

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

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