From 877cc37fdd3245d13e6210535e2e500d0764d572 Mon Sep 17 00:00:00 2001 From: Mustafa Buyukcelebi Date: Thu, 11 Apr 2019 12:05:13 +0300 Subject: [PATCH 001/255] Created transfer screen --- .../walletLineItem/walletLineItemStyles.js | 11 +++-- .../view/walletLineItem/walletLineItemView.js | 17 +++++++- .../container/walletDetailsContainer.js | 15 ++++++- .../walletDetails/view/walletDetailsView.js | 5 ++- src/constants/routeNames.js | 1 + src/navigation/routes.js | 7 ++++ src/screens/index.js | 2 + .../transfer/container/transferContainer.js | 41 +++++++++++++++++++ src/screens/transfer/index.js | 5 +++ src/screens/transfer/screen/transferScreen.js | 12 ++++++ src/screens/transfer/screen/transferStyles.js | 7 ++++ 11 files changed, 115 insertions(+), 8 deletions(-) create mode 100644 src/screens/transfer/container/transferContainer.js create mode 100644 src/screens/transfer/index.js create mode 100644 src/screens/transfer/screen/transferScreen.js create mode 100644 src/screens/transfer/screen/transferStyles.js diff --git a/src/components/basicUIElements/view/walletLineItem/walletLineItemStyles.js b/src/components/basicUIElements/view/walletLineItem/walletLineItemStyles.js index f687ce476..ab76fe3dd 100644 --- a/src/components/basicUIElements/view/walletLineItem/walletLineItemStyles.js +++ b/src/components/basicUIElements/view/walletLineItem/walletLineItemStyles.js @@ -4,7 +4,6 @@ export default EStyleSheet.create({ container: { marginVertical: 15, flexDirection: 'row', - justifyContent: 'space-between', paddingHorizontal: 16, }, fitContent: { @@ -12,9 +11,9 @@ export default EStyleSheet.create({ }, iconTextWrapper: { flexDirection: 'row', - justifyContent: 'space-between', alignSelf: 'center', - alignItems: 'center', + alignItems: 'flex-start', + flex: 5, }, iconWrapper: { alignSelf: 'center', @@ -29,8 +28,9 @@ export default EStyleSheet.create({ }, rightTextWrapper: { flexDirection: 'row', - justifyContent: 'center', + justifyContent: 'flex-end', alignSelf: 'center', + flex: 5, }, text: { fontFamily: '$primaryFont', @@ -74,4 +74,7 @@ export default EStyleSheet.create({ justifyContent: 'center', alignSelf: 'center', }, + test: { + flex: 1, + }, }); diff --git a/src/components/basicUIElements/view/walletLineItem/walletLineItemView.js b/src/components/basicUIElements/view/walletLineItem/walletLineItemView.js index 5a4765b61..bc651e809 100644 --- a/src/components/basicUIElements/view/walletLineItem/walletLineItemView.js +++ b/src/components/basicUIElements/view/walletLineItem/walletLineItemView.js @@ -1,8 +1,9 @@ import React from 'react'; -import { View, Text } from 'react-native'; +import { View, Text, Picker } from 'react-native'; import GrayWrapper from '../grayWrapper/grayWrapperView'; import { Icon } from '../../../icon'; +import { DropdownButton } from '../../../dropdownButton'; import styles from './walletLineItemStyles'; @@ -22,6 +23,9 @@ const WalletLineItem = ({ textColor, index, style, + dropdown, + dropdownOptions, + onDropdownSelect, }) => ( @@ -72,6 +76,17 @@ const WalletLineItem = ({ )} + {dropdown && ( + + + + )} ); diff --git a/src/components/walletDetails/container/walletDetailsContainer.js b/src/components/walletDetails/container/walletDetailsContainer.js index 1baf4f98c..163f18f26 100644 --- a/src/components/walletDetails/container/walletDetailsContainer.js +++ b/src/components/walletDetails/container/walletDetailsContainer.js @@ -1,4 +1,8 @@ import React, { PureComponent } from 'react'; +import { withNavigation } from 'react-navigation'; + +// Constants +import ROUTES from '../../../constants/routeNames'; // Component import WalletDetailsView from '../view/walletDetailsView'; @@ -19,12 +23,19 @@ class WalletContainer extends PureComponent { // Component Life Cycle Functions // Component Functions + _navigate = () => { + const { navigation } = this.props; + console.log('navigation :', navigation); + navigation.navigate({ + routeName: ROUTES.SCREENS.TRANSFER, + }); + }; render() { const { intl, walletData } = this.props; - return ; + return ; } } -export default WalletContainer; +export default withNavigation(WalletContainer); diff --git a/src/components/walletDetails/view/walletDetailsView.js b/src/components/walletDetails/view/walletDetailsView.js index a1bfbdc54..41b2f63d1 100644 --- a/src/components/walletDetails/view/walletDetailsView.js +++ b/src/components/walletDetails/view/walletDetailsView.js @@ -29,7 +29,7 @@ class WalletDetailsView extends PureComponent { // Component Functions render() { - const { walletData, intl } = this.props; + const { walletData, intl, navigate } = this.props; return ( navigate()} /> null, }, }, + [ROUTES.SCREENS.TRANSFER]: { + screen: RootComponent()(Transfer), + navigationOptions: { + header: () => null, + }, + }, }, { headerMode: 'none', diff --git a/src/screens/index.js b/src/screens/index.js index 5496f6470..51eccdbde 100755 --- a/src/screens/index.js +++ b/src/screens/index.js @@ -15,6 +15,7 @@ import { Voters } from './voters'; import RootComponent from './root'; import SteemConnect from './steem-connect/steemConnect'; import { SearchResult } from './searchResult'; +import Transfer from './transfer'; export { Bookmarks, @@ -34,4 +35,5 @@ export { SteemConnect, Voters, SearchResult, + Transfer, }; diff --git a/src/screens/transfer/container/transferContainer.js b/src/screens/transfer/container/transferContainer.js new file mode 100644 index 000000000..a89775606 --- /dev/null +++ b/src/screens/transfer/container/transferContainer.js @@ -0,0 +1,41 @@ +import React, { Component } from 'react'; +import { connect } from 'react-redux'; + +// Services and Actions + +// Middleware + +// Constants + +// Utilities + +// Component +import TransferView from '../screen/transferScreen'; + +/* + * Props Name Description Value + *@props --> props name here description here Value Type Here + * + */ + +class ExampleContainer extends Component { + constructor(props) { + super(props); + this.state = {}; + } + + // Component Life Cycle Functions + + // Component Functions + + render() { + // eslint-disable-next-line + const {} = this.props; + + return ; + } +} + +const mapStateToProps = state => ({}); + +export default connect(mapStateToProps)(ExampleContainer); diff --git a/src/screens/transfer/index.js b/src/screens/transfer/index.js new file mode 100644 index 000000000..58388b226 --- /dev/null +++ b/src/screens/transfer/index.js @@ -0,0 +1,5 @@ +import TransferScreen from './screen/transferScreen'; +import Transfer from './container/transferContainer'; + +export { TransferScreen, Transfer }; +export default Transfer; diff --git a/src/screens/transfer/screen/transferScreen.js b/src/screens/transfer/screen/transferScreen.js new file mode 100644 index 000000000..51f452def --- /dev/null +++ b/src/screens/transfer/screen/transferScreen.js @@ -0,0 +1,12 @@ +import React from 'react'; +import { Text } from 'react-native'; +import styles from './transferStyles'; + +/* Props + * ------------------------------------------------ + * @prop { type } name - Description.... + */ + +const TransferView = ({ x, y, z }) => test; + +export default TransferView; diff --git a/src/screens/transfer/screen/transferStyles.js b/src/screens/transfer/screen/transferStyles.js new file mode 100644 index 000000000..7e2389661 --- /dev/null +++ b/src/screens/transfer/screen/transferStyles.js @@ -0,0 +1,7 @@ +import EStyleSheet from 'react-native-extended-stylesheet'; + +export default EStyleSheet.create({ + styleName: { + // TODO: If we need default style. We can put there. + }, +}); From b997f32fdbce674b38f94c027546669bfc206884 Mon Sep 17 00:00:00 2001 From: Mustafa Buyukcelebi Date: Mon, 15 Apr 2019 14:10:03 +0300 Subject: [PATCH 002/255] Completed transfer design --- .../basicHeader/view/basicHeaderView.js | 1 - src/components/transferFormItem/index.js | 1 + .../view/transferFormItemStyles.js | 17 ++ .../view/transferFormItemView.js | 17 ++ src/config/locales/en-US.json | 15 +- .../transfer/container/transferContainer.js | 24 ++- src/screens/transfer/screen/transferScreen.js | 168 +++++++++++++++++- src/screens/transfer/screen/transferStyles.js | 53 +++++- 8 files changed, 283 insertions(+), 13 deletions(-) create mode 100644 src/components/transferFormItem/index.js create mode 100644 src/components/transferFormItem/view/transferFormItemStyles.js create mode 100644 src/components/transferFormItem/view/transferFormItemView.js diff --git a/src/components/basicHeader/view/basicHeaderView.js b/src/components/basicHeader/view/basicHeaderView.js index 716112bf8..2e289265d 100644 --- a/src/components/basicHeader/view/basicHeaderView.js +++ b/src/components/basicHeader/view/basicHeaderView.js @@ -74,7 +74,6 @@ class BasicHeaderView extends Component { isLoading, isLoggedIn, isModalHeader, - isPostSending, rightButtonText, isPreviewActive, isReply, diff --git a/src/components/transferFormItem/index.js b/src/components/transferFormItem/index.js new file mode 100644 index 000000000..395eb9155 --- /dev/null +++ b/src/components/transferFormItem/index.js @@ -0,0 +1 @@ +export { default as TransferFormItem } from './view/transferFormItemView'; diff --git a/src/components/transferFormItem/view/transferFormItemStyles.js b/src/components/transferFormItem/view/transferFormItemStyles.js new file mode 100644 index 000000000..27d2511c6 --- /dev/null +++ b/src/components/transferFormItem/view/transferFormItemStyles.js @@ -0,0 +1,17 @@ +import EStyleSheet from 'react-native-extended-stylesheet'; + +export default EStyleSheet.create({ + container: { + flexDirection: 'row', + paddingHorizontal: 20, + }, + leftPart: { + flex: 1, + padding: 10, + justifyContent: 'center', + }, + rightPart: { + flex: 2, + padding: 10, + }, +}); diff --git a/src/components/transferFormItem/view/transferFormItemView.js b/src/components/transferFormItem/view/transferFormItemView.js new file mode 100644 index 000000000..d53dfd7f5 --- /dev/null +++ b/src/components/transferFormItem/view/transferFormItemView.js @@ -0,0 +1,17 @@ +import React from 'react'; +import { View, Text } from 'react-native'; +import styles from './transferFormItemStyles'; + +/* Props + * ------------------------------------------------ + * @prop { type } name - Description.... + */ + +const TransferFormItemView = ({ rightComponent, label }) => ( + + {label && {label}} + {rightComponent && rightComponent()} + +); + +export default TransferFormItemView; diff --git a/src/config/locales/en-US.json b/src/config/locales/en-US.json index 2f1819f9a..c15d0bfec 100644 --- a/src/config/locales/en-US.json +++ b/src/config/locales/en-US.json @@ -164,7 +164,8 @@ "cancel": "Cancel", "delete": "Delete", "copied": "Copied!", - "no_internet": "No connection!" + "no_internet": "No connection!", + "confirm": "Confirm" }, "post": { "reblog_alert": "Are you sure you want to reblog?" @@ -231,5 +232,17 @@ "reputation": "reputation", "votes": "votes", "age": "age" + }, + "transfer": { + "title": "Transfer To Account", + "from": "From", + "to": "To", + "amount": "Amount", + "memo": "Memo", + "information": "1", + "amount_desc": "2", + "memo_desc": "This memo is public", + "to_placeholder": "3", + "memo_placeholder": "4" } } diff --git a/src/screens/transfer/container/transferContainer.js b/src/screens/transfer/container/transferContainer.js index a89775606..45d8c0984 100644 --- a/src/screens/transfer/container/transferContainer.js +++ b/src/screens/transfer/container/transferContainer.js @@ -2,6 +2,7 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; // Services and Actions +import { lookupAccounts } from '../../../providers/steem/dsteem'; // Middleware @@ -27,15 +28,30 @@ class ExampleContainer extends Component { // Component Life Cycle Functions // Component Functions + _getAccountsWithUsername = async (username) => { + const validUsers = await lookupAccounts(username); + return validUsers; + }; + + _transferToAccount = (from, destination, amount, memo) => { + console.log('from, destination, amount, memo, :', from, destination, amount, memo); + }; render() { - // eslint-disable-next-line - const {} = this.props; + const { accounts } = this.props; - return ; + return ( + + ); } } -const mapStateToProps = state => ({}); +const mapStateToProps = state => ({ + accounts: state.account.otherAccounts, +}); export default connect(mapStateToProps)(ExampleContainer); diff --git a/src/screens/transfer/screen/transferScreen.js b/src/screens/transfer/screen/transferScreen.js index 51f452def..a246f8ed5 100644 --- a/src/screens/transfer/screen/transferScreen.js +++ b/src/screens/transfer/screen/transferScreen.js @@ -1,12 +1,170 @@ -import React from 'react'; -import { Text } from 'react-native'; -import styles from './transferStyles'; +/* eslint-disable no-restricted-globals */ +import React, { Fragment, Component } from 'react'; +import { Text, View } from 'react-native'; +import ActionSheet from 'react-native-actionsheet'; +import { injectIntl } from 'react-intl'; +import { BasicHeader } from '../../../components/basicHeader'; +import { TextInput } from '../../../components/textInput'; +import { TransferFormItem } from '../../../components/transferFormItem'; +import { MainButton } from '../../../components/mainButton'; +import { DropdownButton } from '../../../components/dropdownButton'; +import { UserAvatar } from '../../../components/userAvatar'; +import { Icon } from '../../../components/icon'; + +import styles from './transferStyles'; /* Props * ------------------------------------------------ * @prop { type } name - Description.... */ -const TransferView = ({ x, y, z }) => test; +class TransferView extends Component { + constructor(props) { + super(props); + this.state = { + from: props.accounts[0].username, + destination: '', + amount: '', + memo: '', + isUsernameValid: false, + }; + } -export default TransferView; + // Component Life Cycles + + // Component Functions + _setState = (key, value) => { + const { getAccountsWithUsername } = this.props; + + if (key) { + switch (key) { + case 'destination': + getAccountsWithUsername(value).then((res) => { + const isValid = res.includes(value); + + this.setState({ isUsernameValid: isValid }); + }); + this.setState({ [key]: value }); + break; + case 'amount': + if (!isNaN(value)) this.setState({ [key]: value }); + break; + + default: + this.setState({ [key]: value }); + break; + } + } + }; + + _handleTransferAction = () => { + const { transferToAccount } = this.props; + const { + from, destination, amount, memo, + } = this.state; + + transferToAccount(from, destination, amount, memo); + }; + + _renderInput = (placeholder, state) => ( + this._setState(state, text)} + value={this.state[state]} + placeholder={placeholder} + placeholderTextColor="#c1c5c7" + autoCapitalize="none" + keyboardType="numeric" + /> + ); + + _renderDropdown = accounts => ( + item.username)} + defaultText={accounts[0].username} + selectedOptionIndex={0} + onSelect={(index, value) => this.setState({ from: value })} + /> + ); + + _renderDescription = text => {text}; + + render() { + const { accounts, intl } = this.props; + const { destination, isUsernameValid, amount } = this.state; + + return ( + + + + + + + + + + this._renderDropdown(accounts)} + /> + this._renderInput( + intl.formatMessage({ id: 'transfer.to_placeholder' }), + 'destination', + ) + } + /> + this._renderInput('Amount', 'amount')} + /> + this._renderDescription(intl.formatMessage({ id: 'transfer.amount_desc' })) + } + /> + this._renderInput(intl.formatMessage({ id: 'transfer.memo_placeholder' }), 'memo') + } + /> + this._renderDescription(intl.formatMessage({ id: 'transfer.memo_desc' })) + } + /> + + + this.ActionSheet.show()} + > + NEXT + + + + (this.ActionSheet = o)} + options={[ + intl.formatMessage({ id: 'alert.confirm' }), + intl.formatMessage({ id: 'alert.cancel' }), + ]} + title={intl.formatMessage({ id: 'transfer.information' })} + cancelButtonIndex={1} + destructiveButtonIndex={0} + onPress={(index) => { + index === 0 ? this._handleTransferAction() : null; + }} + /> + + ); + } +} + +export default injectIntl(TransferView); diff --git a/src/screens/transfer/screen/transferStyles.js b/src/screens/transfer/screen/transferStyles.js index 7e2389661..3423d69e0 100644 --- a/src/screens/transfer/screen/transferStyles.js +++ b/src/screens/transfer/screen/transferStyles.js @@ -1,7 +1,56 @@ import EStyleSheet from 'react-native-extended-stylesheet'; export default EStyleSheet.create({ - styleName: { - // TODO: If we need default style. We can put there. + container: { + flex: 1, + backgroundColor: '$primaryBackgroundColor', + justifyContent: 'center', + alignItems: 'center', + }, + topContent: { + flexDirection: 'row', + flex: 1, + justifyContent: 'center', + alignItems: 'center', + }, + middleContent: { + flex: 3, + justifyContent: 'center', + alignItems: 'center', + }, + bottomContent: { + flex: 2, + justifyContent: 'center', + alignItems: 'center', + }, + input: { + borderWidth: 1, + borderColor: '$borderColor', + borderRadius: 10, + padding: 10, + }, + description: { + color: '$iconColor', + }, + button: { + width: '$deviceWidth / 3', + marginTop: 30, + justifyContent: 'center', + alignItems: 'center', + }, + buttonText: { + color: '$white', + }, + dropdown: { + borderWidth: 1, + borderColor: '$borderColor', + borderRadius: 10, + flex: 1, + padding: 10, + }, + icon: { + fontSize: 40, + color: '$iconColor', + marginHorizontal: 20, }, }); From 24da18ca13ea3b3cb97190990272840385a54ef7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:19 +0300 Subject: [PATCH 003/255] New translations en-US.json (Hindi) --- src/config/locales/hi-IN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/hi-IN.json b/src/config/locales/hi-IN.json index 4163948bf..c0467c409 100644 --- a/src/config/locales/hi-IN.json +++ b/src/config/locales/hi-IN.json @@ -150,7 +150,10 @@ "allRead": "सभी सूचनाओं को पढ़ लिया चिन्हित करें", "claim_reward_balance_ok": "इनाम की राशी ले चुके", "fail": "असफल!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "आपका पोस्ट सफलतापूर्ण साझा हो गया", + "success_moved": "Moved to draft", "permission_denied": "अनुमोदन अस्वीकृत हुवा", "permission_text": "कृपया, अपने फ़ोन समायोजन में जाएँ और इस्टीम एप्प की अनुमोदन बदलें|", "success_rebloged": "Rebloged!", From af5f5917f495b9677b32bc7573f98534b1b5ed89 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:21 +0300 Subject: [PATCH 004/255] New translations en-US.json (Nigerian Pidgin) --- src/config/locales/pcm-NG.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/pcm-NG.json b/src/config/locales/pcm-NG.json index 87c8f2caa..f8fdbc44f 100644 --- a/src/config/locales/pcm-NG.json +++ b/src/config/locales/pcm-NG.json @@ -150,7 +150,10 @@ "allRead": "Mark am say you don read all the alert", "claim_reward_balance_ok": "You don collect the reward", "fail": "E Fail oo!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post don share finish", + "success_moved": "Moved to draft", "permission_denied": "E no gree do", "permission_text": "Abeg go your phone settings go change eSteem app permissions. ", "success_rebloged": "E don reblog!", From 9816b8362914b35ea957145170d302514b023ad6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:22 +0300 Subject: [PATCH 005/255] New translations en-US.json (Romanian) --- src/config/locales/ro-RO.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ro-RO.json b/src/config/locales/ro-RO.json index 10c018695..2a91518c4 100644 --- a/src/config/locales/ro-RO.json +++ b/src/config/locales/ro-RO.json @@ -150,7 +150,10 @@ "allRead": "Marchează toate notificările ca citite", "claim_reward_balance_ok": "Sold de recompensă colectat", "fail": "Eșuat!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Postarea ta a fost distribuită cu succes", + "success_moved": "Moved to draft", "permission_denied": "Permisiune respinsă", "permission_text": "Te rugăm să mergi în setările telefonului și să schimbi permisiunile aplicației eSteem.", "success_rebloged": "Rebloged!", From 13a4e7090c196043a718b73973f16e3c2cb1f460 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:24 +0300 Subject: [PATCH 006/255] New translations en-US.json (Punjabi) --- src/config/locales/pa-IN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/pa-IN.json b/src/config/locales/pa-IN.json index ff420a119..840bd4849 100644 --- a/src/config/locales/pa-IN.json +++ b/src/config/locales/pa-IN.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From f89dcabfadeae5eef51bf931f72279aa10b85229 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:26 +0300 Subject: [PATCH 007/255] New translations en-US.json (Portuguese) --- src/config/locales/pt-PT.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/pt-PT.json b/src/config/locales/pt-PT.json index 29b6f543b..7c18cfa89 100644 --- a/src/config/locales/pt-PT.json +++ b/src/config/locales/pt-PT.json @@ -150,7 +150,10 @@ "allRead": "Marcar todas as notificações como lidas", "claim_reward_balance_ok": "Balanço de Recompensa reclamado", "fail": "Falha!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Seu post partilhado com sucesso", + "success_moved": "Moved to draft", "permission_denied": "Permissão negada", "permission_text": "Por favor, vá para configurações de telefone e alterar as permissões da app Steem.", "success_rebloged": "Reblogado!", From 1373b40545eb611433376bc65d488d70bcdbcc1f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:27 +0300 Subject: [PATCH 008/255] New translations en-US.json (Polish) --- src/config/locales/pl-PL.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/pl-PL.json b/src/config/locales/pl-PL.json index ff420a119..840bd4849 100644 --- a/src/config/locales/pl-PL.json +++ b/src/config/locales/pl-PL.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From ca8c663ed25aa788c5bcda90b72b71ec6c59c69b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:28 +0300 Subject: [PATCH 009/255] New translations en-US.json (Persian) --- src/config/locales/fa-IR.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/fa-IR.json b/src/config/locales/fa-IR.json index 0695f30dd..b18aefb66 100644 --- a/src/config/locales/fa-IR.json +++ b/src/config/locales/fa-IR.json @@ -150,7 +150,10 @@ "allRead": "علامت زدن تمام اعلانات به عنوان خوانده شده", "claim_reward_balance_ok": "پاداش دریافت شده", "fail": "ناموفق!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "مطلب شما با موفقیت منتشر شد", + "success_moved": "Moved to draft", "permission_denied": "خطای دسترسی", "permission_text": "لطفا به تنظیمات تلفن خود رفته و دسترسی eSteem را تغییر دهید.", "success_rebloged": "Rebloged!", From 3435c4d2c3fe61f0ede99eed3027ad4911ae4490 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:30 +0300 Subject: [PATCH 010/255] New translations en-US.json (Norwegian) --- src/config/locales/no-NO.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/no-NO.json b/src/config/locales/no-NO.json index ff420a119..840bd4849 100644 --- a/src/config/locales/no-NO.json +++ b/src/config/locales/no-NO.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From d83063e63e389bd15687eed9546b0108fda624c0 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:32 +0300 Subject: [PATCH 011/255] New translations en-US.json (Nepali) --- src/config/locales/ne-NP.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ne-NP.json b/src/config/locales/ne-NP.json index ff420a119..840bd4849 100644 --- a/src/config/locales/ne-NP.json +++ b/src/config/locales/ne-NP.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 1ac65aca9dbda7f7f5fc4ba1bac988dcdaf40448 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:33 +0300 Subject: [PATCH 012/255] New translations en-US.json (Sanskrit) --- src/config/locales/sa-IN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/sa-IN.json b/src/config/locales/sa-IN.json index ff420a119..840bd4849 100644 --- a/src/config/locales/sa-IN.json +++ b/src/config/locales/sa-IN.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From f4d05f6d8f265385d1ba3fb972b2509c2af6ac67 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:35 +0300 Subject: [PATCH 013/255] New translations en-US.json (Mongolian) --- src/config/locales/mn-MN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/mn-MN.json b/src/config/locales/mn-MN.json index ff420a119..840bd4849 100644 --- a/src/config/locales/mn-MN.json +++ b/src/config/locales/mn-MN.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 6d266a44f2f2ac8589a9e85ceeeb932fba035bf3 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:36 +0300 Subject: [PATCH 014/255] New translations en-US.json (Malay) --- src/config/locales/ms-MY.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ms-MY.json b/src/config/locales/ms-MY.json index 80d639ac1..0b3abf0b9 100644 --- a/src/config/locales/ms-MY.json +++ b/src/config/locales/ms-MY.json @@ -150,7 +150,10 @@ "allRead": "Tandakan semua pemberitahuan sebagai telah dibaca", "claim_reward_balance_ok": "Baki ganjaran telah dituntut", "fail": "Gagal!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Pos anda berjaya disiarkan", + "success_moved": "Moved to draft", "permission_denied": "Tidak dibenarkan", "permission_text": "Sila pergi ke tetapan telefon dan mengubah keizinan keyakinan eSteem app.", "success_rebloged": "Rebloged!", From 9dee82c469532c4dc4f5c195cb89399cc866318d Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:38 +0300 Subject: [PATCH 015/255] New translations en-US.json (Macedonian) --- src/config/locales/mk-MK.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/mk-MK.json b/src/config/locales/mk-MK.json index ff420a119..840bd4849 100644 --- a/src/config/locales/mk-MK.json +++ b/src/config/locales/mk-MK.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 68c7102bca330111ddc575d426080b7f50e9ce12 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:40 +0300 Subject: [PATCH 016/255] New translations en-US.json (Lithuanian) --- src/config/locales/lt-LT.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/lt-LT.json b/src/config/locales/lt-LT.json index 144c36bd1..868578cac 100644 --- a/src/config/locales/lt-LT.json +++ b/src/config/locales/lt-LT.json @@ -150,7 +150,10 @@ "allRead": "Pažymėti visus pranešimus kaip skaitytus", "claim_reward_balance_ok": "Atlygis atsiimtas", "fail": "Nepavyko!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Jūsų įrašas sėkmingai pasidalintas", + "success_moved": "Moved to draft", "permission_denied": "Leidimas nesuteiktas", "permission_text": "Prašome telefono nustatymuose pakeisti eSteem programėlės leidimus.", "success_rebloged": "Rebloged!", From 45f6b2845619b4585302977d8bbde7b1eeae417c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:42 +0300 Subject: [PATCH 017/255] New translations en-US.json (Latvian) --- src/config/locales/lv-LV.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/lv-LV.json b/src/config/locales/lv-LV.json index ff420a119..840bd4849 100644 --- a/src/config/locales/lv-LV.json +++ b/src/config/locales/lv-LV.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From ba36ddcfaf09c9a5cbe89fe215bc32a79ff477e7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:44 +0300 Subject: [PATCH 018/255] New translations en-US.json (Kyrgyz) --- src/config/locales/ky-KG.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ky-KG.json b/src/config/locales/ky-KG.json index ff420a119..840bd4849 100644 --- a/src/config/locales/ky-KG.json +++ b/src/config/locales/ky-KG.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From faa17b0fcf75e5ed4e302bf2131efff95177880f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:46 +0300 Subject: [PATCH 019/255] New translations en-US.json (Russian) --- src/config/locales/ru-RU.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ru-RU.json b/src/config/locales/ru-RU.json index baba2fdf0..783d616fd 100644 --- a/src/config/locales/ru-RU.json +++ b/src/config/locales/ru-RU.json @@ -150,7 +150,10 @@ "allRead": "Всё прочтено", "claim_reward_balance_ok": "Награда зачислена на баланс", "fail": "Не вышло!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Ваш пост отправлен", + "success_moved": "Moved to draft", "permission_denied": "Не достаточно разрешений", "permission_text": "Пожалуйста перейдите в настройки телефона и выдайте разрешения для eSteem", "success_rebloged": "Репостнуто!", From 349e377e30637d757b266bbf37f1df02fe5c1004 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:47 +0300 Subject: [PATCH 020/255] New translations en-US.json (Serbian (Latin)) --- src/config/locales/sr-CS.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/sr-CS.json b/src/config/locales/sr-CS.json index 58a06157a..c17fcaf68 100644 --- a/src/config/locales/sr-CS.json +++ b/src/config/locales/sr-CS.json @@ -150,7 +150,10 @@ "allRead": "Sva obaveštenja su označena kao pročitana", "claim_reward_balance_ok": "Potvrđeni bilans nagrade", "fail": "Nije uspelo!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Uspešno ste podelili post", + "success_moved": "Moved to draft", "permission_denied": "Pristup odbijen", "permission_text": "Molimo, idite na podešavanja telefona i promenite ovlašćenja za eSteem aplikaciju.", "success_rebloged": "Podeljeno!", From c69d1e30416a3432cbd39517a332724563ad1973 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:49 +0300 Subject: [PATCH 021/255] New translations en-US.json (Korean) --- src/config/locales/ko-KR.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ko-KR.json b/src/config/locales/ko-KR.json index fe8cd0ec8..49adde766 100644 --- a/src/config/locales/ko-KR.json +++ b/src/config/locales/ko-KR.json @@ -150,7 +150,10 @@ "allRead": "모든 알림을 읽은 상태로 표시", "claim_reward_balance_ok": "보상을 요청했습니다", "fail": "실패!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "글을 성공적으로 공유했습니다", + "success_moved": "Moved to draft", "permission_denied": "권한이 없습니다", "permission_text": "휴대폰 설정으로 이동하여 eSteem 앱 알림 설정을 변경해주세요", "success_rebloged": "리블로그 완료!", From 7d2046131ecbff0ced419efee7c59b44ed7c6afe Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:51 +0300 Subject: [PATCH 022/255] New translations en-US.json (Turkmen) --- src/config/locales/tk-TM.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/tk-TM.json b/src/config/locales/tk-TM.json index ff420a119..840bd4849 100644 --- a/src/config/locales/tk-TM.json +++ b/src/config/locales/tk-TM.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 931da33692270bc09eccac2742e25d4a0c11ec7c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:52 +0300 Subject: [PATCH 023/255] New translations en-US.json (Yoruba) --- src/config/locales/yo-NG.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/yo-NG.json b/src/config/locales/yo-NG.json index ac99ab15d..45ae6ca96 100644 --- a/src/config/locales/yo-NG.json +++ b/src/config/locales/yo-NG.json @@ -150,7 +150,10 @@ "allRead": "Gba pe oti ka gbogbo akiyesi", "claim_reward_balance_ok": "Awon ere ti di gbigba", "fail": "Ko yori!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Oro akosile re ti di titan ka", + "success_moved": "Moved to draft", "permission_denied": "Ko ase fun", "permission_text": "Jowo, Losi ibi iseto ero ilewo re, ki o si se atunse awon ase to fun eSteem app.", "success_rebloged": "Oti se eda oro yi!", From efab8be6f2b2c7117bb74de0c0d9ff9086a5f4b7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:54 +0300 Subject: [PATCH 024/255] New translations en-US.json (Vietnamese) --- src/config/locales/vi-VN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/vi-VN.json b/src/config/locales/vi-VN.json index 22c5c8eca..723557c66 100644 --- a/src/config/locales/vi-VN.json +++ b/src/config/locales/vi-VN.json @@ -150,7 +150,10 @@ "allRead": "Đã đánh dấu tất cả các thông báo là đã đọc", "claim_reward_balance_ok": "Số dư tiền thưởng đã được nhận", "fail": "Thất bại!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Bài viết của bạn đã được chia sẻ thành công", + "success_moved": "Moved to draft", "permission_denied": "Quyền truy cập bị từ chối", "permission_text": "Vui lòng mở cài đặt điện thoại và thay đổi quyền truy cập cho ứng dụng eSteem.", "success_rebloged": "Đã đăng lại bài viết!", From 1ae4e80ad49a16629afd63f5b83b51e59feac6ea Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:55 +0300 Subject: [PATCH 025/255] New translations en-US.json (Uzbek) --- src/config/locales/uz-UZ.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/uz-UZ.json b/src/config/locales/uz-UZ.json index ff420a119..840bd4849 100644 --- a/src/config/locales/uz-UZ.json +++ b/src/config/locales/uz-UZ.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 36b03bafb33cfde7e6ebbcc3dd4de7e4f7d748e9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:57 +0300 Subject: [PATCH 026/255] New translations en-US.json (Urdu (Pakistan)) --- src/config/locales/ur-PK.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ur-PK.json b/src/config/locales/ur-PK.json index e11ce0adc..ea08cfecb 100644 --- a/src/config/locales/ur-PK.json +++ b/src/config/locales/ur-PK.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Reblogged!", From 371e8ed7b536fc97ec3c50f9f8a87b70c81ab4bb Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:54:59 +0300 Subject: [PATCH 027/255] New translations en-US.json (Urdu (India)) --- src/config/locales/ur-IN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ur-IN.json b/src/config/locales/ur-IN.json index e11ce0adc..ea08cfecb 100644 --- a/src/config/locales/ur-IN.json +++ b/src/config/locales/ur-IN.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Reblogged!", From c1c29b7af80b2c47942f880a2cd043839d322d0c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:01 +0300 Subject: [PATCH 028/255] New translations en-US.json (Ukrainian) --- src/config/locales/uk-UA.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/uk-UA.json b/src/config/locales/uk-UA.json index ff420a119..840bd4849 100644 --- a/src/config/locales/uk-UA.json +++ b/src/config/locales/uk-UA.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From b73da3ed8d4b306fda43bc1666871709ac6590a1 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:02 +0300 Subject: [PATCH 029/255] New translations en-US.json (Tibetan) --- src/config/locales/bo-BT.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/bo-BT.json b/src/config/locales/bo-BT.json index ff420a119..840bd4849 100644 --- a/src/config/locales/bo-BT.json +++ b/src/config/locales/bo-BT.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From fb6509bdaad434060d032c790623966e2afc5275 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:04 +0300 Subject: [PATCH 030/255] New translations en-US.json (Slovak) --- src/config/locales/sk-SK.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/sk-SK.json b/src/config/locales/sk-SK.json index ff420a119..840bd4849 100644 --- a/src/config/locales/sk-SK.json +++ b/src/config/locales/sk-SK.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From df4ebfbc4ccf75732134a4d94aa179187470dfb6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:06 +0300 Subject: [PATCH 031/255] New translations en-US.json (Thai) --- src/config/locales/th-TH.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/th-TH.json b/src/config/locales/th-TH.json index ff420a119..840bd4849 100644 --- a/src/config/locales/th-TH.json +++ b/src/config/locales/th-TH.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 896c9dd53498d422dca0a835fe172d39d05cc611 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:08 +0300 Subject: [PATCH 032/255] New translations en-US.json (Tamil) --- src/config/locales/ta-IN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ta-IN.json b/src/config/locales/ta-IN.json index 3d028bcf2..4751e120f 100644 --- a/src/config/locales/ta-IN.json +++ b/src/config/locales/ta-IN.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From c382b5c858563b07edc74e6fd31d974a22ecb3bd Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:09 +0300 Subject: [PATCH 033/255] New translations en-US.json (Tajik) --- src/config/locales/tg-TJ.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/tg-TJ.json b/src/config/locales/tg-TJ.json index ff420a119..840bd4849 100644 --- a/src/config/locales/tg-TJ.json +++ b/src/config/locales/tg-TJ.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 89ddc03356e07b8a03d4075340a707924e2a07c7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:11 +0300 Subject: [PATCH 034/255] New translations en-US.json (Swedish) --- src/config/locales/sv-SE.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/sv-SE.json b/src/config/locales/sv-SE.json index ff420a119..840bd4849 100644 --- a/src/config/locales/sv-SE.json +++ b/src/config/locales/sv-SE.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 3531c3f82a5aacd7e0249c6eb41eca5af6b7cd01 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:12 +0300 Subject: [PATCH 035/255] New translations en-US.json (Swahili) --- src/config/locales/sw-KE.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/sw-KE.json b/src/config/locales/sw-KE.json index ff420a119..840bd4849 100644 --- a/src/config/locales/sw-KE.json +++ b/src/config/locales/sw-KE.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 30cc7f7caefe940479be61d5f623e6d25dcccdb6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:14 +0300 Subject: [PATCH 036/255] New translations en-US.json (Spanish) --- src/config/locales/es-ES.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/es-ES.json b/src/config/locales/es-ES.json index fb6ba5d5c..7d73a92fd 100644 --- a/src/config/locales/es-ES.json +++ b/src/config/locales/es-ES.json @@ -150,7 +150,10 @@ "allRead": "Marcar todas las notificaciones como leídas", "claim_reward_balance_ok": "Recompensa de balance reclamada", "fail": "Falló!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Su publicación fue compartida con éxito", + "success_moved": "Moved to draft", "permission_denied": "Permiso dengado", "permission_text": "Por favor, ir a ajustes del teléfono y cambiar los permisos de la aplicación de eSteem.", "success_rebloged": "Rebloged!", From 95ad70e76e07771727d61cf3d52b01dcdf3eeacd Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:16 +0300 Subject: [PATCH 037/255] New translations en-US.json (Slovenian) --- src/config/locales/sl-SI.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/sl-SI.json b/src/config/locales/sl-SI.json index ff420a119..840bd4849 100644 --- a/src/config/locales/sl-SI.json +++ b/src/config/locales/sl-SI.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From b87a45ca8435258f4451133c11062e5f9590813c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:17 +0300 Subject: [PATCH 038/255] New translations en-US.json (Kurdish) --- src/config/locales/ku-TR.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ku-TR.json b/src/config/locales/ku-TR.json index ff420a119..840bd4849 100644 --- a/src/config/locales/ku-TR.json +++ b/src/config/locales/ku-TR.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 4f069f7352c9674c824272aef4a377a835d9350e Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:19 +0300 Subject: [PATCH 039/255] New translations en-US.json (Kazakh) --- src/config/locales/kk-KZ.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/kk-KZ.json b/src/config/locales/kk-KZ.json index ff420a119..840bd4849 100644 --- a/src/config/locales/kk-KZ.json +++ b/src/config/locales/kk-KZ.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From b608522066515e2f1b86d1ae8357e9282ecc60db Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:20 +0300 Subject: [PATCH 040/255] New translations en-US.json (Turkish) --- src/config/locales/tr-TR.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/tr-TR.json b/src/config/locales/tr-TR.json index d8628ca43..880f4a582 100644 --- a/src/config/locales/tr-TR.json +++ b/src/config/locales/tr-TR.json @@ -150,7 +150,10 @@ "allRead": "Tüm bildirimleri okundu olarak işaretle", "claim_reward_balance_ok": "Ödül alındı", "fail": "Başarısız!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Gönderin başarıyla paylaşıldı", + "success_moved": "Moved to draft", "permission_denied": "İzin reddedildi", "permission_text": "Lütfen telefon ayarlarına gidin ve eSteem'in izinlerini açın.", "success_rebloged": "Rebloged!", From 187eb5e6798fdac39c32b4799889d97c4c84444f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:22 +0300 Subject: [PATCH 041/255] New translations en-US.json (Bulgarian) --- src/config/locales/bg-BG.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/bg-BG.json b/src/config/locales/bg-BG.json index ff420a119..840bd4849 100644 --- a/src/config/locales/bg-BG.json +++ b/src/config/locales/bg-BG.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 7cd606b6be446e865b538b9e7a10596e35ed5169 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:24 +0300 Subject: [PATCH 042/255] New translations en-US.json (Czech) --- src/config/locales/cs-CZ.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/cs-CZ.json b/src/config/locales/cs-CZ.json index ff420a119..840bd4849 100644 --- a/src/config/locales/cs-CZ.json +++ b/src/config/locales/cs-CZ.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 832ed868db80dddb6de7421924edca7a16d7de1b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:25 +0300 Subject: [PATCH 043/255] New translations en-US.json (Croatian) --- src/config/locales/hr-HR.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/hr-HR.json b/src/config/locales/hr-HR.json index f0efbef97..538c7f9be 100644 --- a/src/config/locales/hr-HR.json +++ b/src/config/locales/hr-HR.json @@ -150,7 +150,10 @@ "allRead": "Označi sve obavijesti kao pročitane", "claim_reward_balance_ok": "Nagrada preuzeta", "fail": "Nije uspjelo!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Vaša objava je uspješno podijeljena", + "success_moved": "Moved to draft", "permission_denied": "Dopuštenje odbijeno", "permission_text": "Molim vas, idite na postavke uređaja i promijenite dozvole za eSteem aplikaciju.", "success_rebloged": "Rebloged!", From 93e9badcb2ed05dc5acf24301ffaa705be0ab5f9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:27 +0300 Subject: [PATCH 044/255] New translations en-US.json (Chinese Traditional) --- src/config/locales/zh-TW.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/zh-TW.json b/src/config/locales/zh-TW.json index b31770850..66c2e3aef 100644 --- a/src/config/locales/zh-TW.json +++ b/src/config/locales/zh-TW.json @@ -150,7 +150,10 @@ "allRead": "標記所有通知為已讀", "claim_reward_balance_ok": "獎勵餘額已經領取", "fail": "失敗!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "您的帖子已經成功分享", + "success_moved": "Moved to draft", "permission_denied": "權限不足", "permission_text": "請前往手機「設定」,更改eSteem應用程式權限。", "success_rebloged": "已轉發!", From d6e94afb427482db995f9ff6fe31a462bfb813fb Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:29 +0300 Subject: [PATCH 045/255] New translations en-US.json (Chinese Simplified) --- src/config/locales/zh-CN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/zh-CN.json b/src/config/locales/zh-CN.json index 2e86f32b2..6d2020f2a 100644 --- a/src/config/locales/zh-CN.json +++ b/src/config/locales/zh-CN.json @@ -150,7 +150,10 @@ "allRead": "已将所有通知标为已读", "claim_reward_balance_ok": "奖励余额已领取", "fail": "失败!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "您的帖子已成功分享", + "success_moved": "Moved to draft", "permission_denied": "无权限", "permission_text": "请前往手机设置更改 eSteem 应用程序权限。", "success_rebloged": "Rebloged!", From 36350a6df53eae9c66df2a22c10762bcaea64575 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:30 +0300 Subject: [PATCH 046/255] New translations en-US.json (Cebuano) --- src/config/locales/ceb-PH.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ceb-PH.json b/src/config/locales/ceb-PH.json index ff420a119..840bd4849 100644 --- a/src/config/locales/ceb-PH.json +++ b/src/config/locales/ceb-PH.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From ca396f8b151c95d47d36951937907174b47ea2c4 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:32 +0300 Subject: [PATCH 047/255] New translations en-US.json (Catalan) --- src/config/locales/ca-ES.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ca-ES.json b/src/config/locales/ca-ES.json index ff420a119..840bd4849 100644 --- a/src/config/locales/ca-ES.json +++ b/src/config/locales/ca-ES.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 80340dec9c509def9ce2cf61bb317d38bf57149b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:33 +0300 Subject: [PATCH 048/255] New translations en-US.json (Bosnian) --- src/config/locales/bs-BA.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/bs-BA.json b/src/config/locales/bs-BA.json index ff420a119..840bd4849 100644 --- a/src/config/locales/bs-BA.json +++ b/src/config/locales/bs-BA.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 7feeb697ff411443e8f1c0537ae411b7173d9b52 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:35 +0300 Subject: [PATCH 049/255] New translations en-US.json (Dutch) --- src/config/locales/nl-NL.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/nl-NL.json b/src/config/locales/nl-NL.json index 6517efc88..1a283dfc0 100644 --- a/src/config/locales/nl-NL.json +++ b/src/config/locales/nl-NL.json @@ -150,7 +150,10 @@ "allRead": "Alle notificaties als gelezen markeren", "claim_reward_balance_ok": "Beloningsbalans opgeëist", "fail": "Mislukt!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Je bericht is succesvol gedeeld", + "success_moved": "Moved to draft", "permission_denied": "Toegang geweigerd", "permission_text": "Ga naar telefoon-instellingen, en wijzig de machtigingen van de eSteem-app.", "success_rebloged": "Gedeeld!", From 3a26282b53fdeac1980eee77f72febefc2c4f8bc Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:37 +0300 Subject: [PATCH 050/255] New translations en-US.json (Bengali) --- src/config/locales/bn-BD.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/bn-BD.json b/src/config/locales/bn-BD.json index 960281069..6a662f1aa 100644 --- a/src/config/locales/bn-BD.json +++ b/src/config/locales/bn-BD.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 939f01bef55594a7ce18d03c7bd24f5ae322e4ce Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:39 +0300 Subject: [PATCH 051/255] New translations en-US.json (Assamese) --- src/config/locales/as-IN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/as-IN.json b/src/config/locales/as-IN.json index ff420a119..840bd4849 100644 --- a/src/config/locales/as-IN.json +++ b/src/config/locales/as-IN.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From a75afb202826738b924d85768bd9656999e7f7cd Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:41 +0300 Subject: [PATCH 052/255] New translations en-US.json (Armenian) --- src/config/locales/hy-AM.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/hy-AM.json b/src/config/locales/hy-AM.json index 364ea4647..b12ecc58d 100644 --- a/src/config/locales/hy-AM.json +++ b/src/config/locales/hy-AM.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 7c782d8055a66562125ea3268723623123da0947 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:43 +0300 Subject: [PATCH 053/255] New translations en-US.json (Arabic) --- src/config/locales/ar-SA.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ar-SA.json b/src/config/locales/ar-SA.json index 221fb101e..63c93059d 100644 --- a/src/config/locales/ar-SA.json +++ b/src/config/locales/ar-SA.json @@ -150,7 +150,10 @@ "allRead": "وضع جميع الإشعارات كأنها مقروءة", "claim_reward_balance_ok": "تم سحب المكافآت", "fail": "فشل!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "مشاركتك تمت مشاركتها بنجاح", + "success_moved": "Moved to draft", "permission_denied": "طلب الإذن مرفوض", "permission_text": "يرجى الانتقال إلى إعدادات الهاتف وتغيير أذونات تطبيق eSteem.", "success_rebloged": "أعيد تدوينه!", From f79444d0156e8ee5444de829f8187497ef7f471b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:44 +0300 Subject: [PATCH 054/255] New translations en-US.json (Albanian) --- src/config/locales/sq-AL.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/sq-AL.json b/src/config/locales/sq-AL.json index 364ea4647..b12ecc58d 100644 --- a/src/config/locales/sq-AL.json +++ b/src/config/locales/sq-AL.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From d0339d07ecb791592f345aca9dde6eb513acfeae Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:46 +0300 Subject: [PATCH 055/255] New translations en-US.json (Azerbaijani) --- src/config/locales/az-AZ.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/az-AZ.json b/src/config/locales/az-AZ.json index 0fc50d9b6..be6ff1c80 100644 --- a/src/config/locales/az-AZ.json +++ b/src/config/locales/az-AZ.json @@ -150,7 +150,10 @@ "allRead": "Bütün bildirişləri oxunmuş kimi işarələ", "claim_reward_balance_ok": "Mükafat alındı", "fail": "Uğursuz!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Göndərişin uğurla paylaşıldı", + "success_moved": "Moved to draft", "permission_denied": "İcazə verilmədi", "permission_text": "Zəhmət olmasa telefon tənzimləmələrinə gedərək eSteem tətbiq icazələrini dəyişdirin.", "success_rebloged": "Təkrar paylaşıldı!", From ed0b25e9c76620c717caa597c0c274de003f1135 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:47 +0300 Subject: [PATCH 056/255] New translations en-US.json (Danish) --- src/config/locales/da-DK.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/da-DK.json b/src/config/locales/da-DK.json index ff420a119..840bd4849 100644 --- a/src/config/locales/da-DK.json +++ b/src/config/locales/da-DK.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 28df547ecbd2df9611e83294dd7a5ac20df2eb6d Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:49 +0300 Subject: [PATCH 057/255] New translations en-US.json (Esperanto) --- src/config/locales/eo-UY.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/eo-UY.json b/src/config/locales/eo-UY.json index ff420a119..840bd4849 100644 --- a/src/config/locales/eo-UY.json +++ b/src/config/locales/eo-UY.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 2257f38fadd762f9384838e7f55d6a0ad34ca787 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:50 +0300 Subject: [PATCH 058/255] New translations en-US.json (Kashmiri) --- src/config/locales/ks-IN.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ks-IN.json b/src/config/locales/ks-IN.json index ff420a119..840bd4849 100644 --- a/src/config/locales/ks-IN.json +++ b/src/config/locales/ks-IN.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 796f13dec2449f8e7e71639338046ba5af3ecb6b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:52 +0300 Subject: [PATCH 059/255] New translations en-US.json (Hebrew) --- src/config/locales/he-IL.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/he-IL.json b/src/config/locales/he-IL.json index c3d976a40..0b7b788ce 100644 --- a/src/config/locales/he-IL.json +++ b/src/config/locales/he-IL.json @@ -150,7 +150,10 @@ "allRead": "סימון כל ההודעות כנקראו", "claim_reward_balance_ok": "תגמול יתרה נתקבלה", "fail": "נכשל!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "הפוסט שלך שותף בהצלחה", + "success_moved": "Moved to draft", "permission_denied": "הרשאה נדחתה", "permission_text": "אנא, שנה את ההרשאות לאפליקציית ה eSteem, דרך ההגדרות בטלפון.", "success_rebloged": "שותף!", From de612de98d80a19cc22dda998ded1066ff5a3a69 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:54 +0300 Subject: [PATCH 060/255] New translations en-US.json (Japanese) --- src/config/locales/ja-JP.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ja-JP.json b/src/config/locales/ja-JP.json index ff420a119..840bd4849 100644 --- a/src/config/locales/ja-JP.json +++ b/src/config/locales/ja-JP.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 2f3d20900f8d6fabef313e0388fd0bf6bcd2d171 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:55 +0300 Subject: [PATCH 061/255] New translations en-US.json (Italian) --- src/config/locales/it-IT.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/it-IT.json b/src/config/locales/it-IT.json index ed6ccb2f6..129216c36 100644 --- a/src/config/locales/it-IT.json +++ b/src/config/locales/it-IT.json @@ -150,7 +150,10 @@ "allRead": "Segna tutte le notifiche come lette", "claim_reward_balance_ok": "Saldo Ricompensa Richiesto", "fail": "Non riuscito!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Il tuo post è stato con successo condiviso", + "success_moved": "Moved to draft", "permission_denied": "Permesso negato", "permission_text": "Per favore, vai alle impostazioni del cellulare e modificare le autorizzazioni di eSteem app.", "success_rebloged": "Rebloged!", From 54aa00a1e5092b6634dbb7bfba06725ae9a62778 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:57 +0300 Subject: [PATCH 062/255] New translations en-US.json (Irish) --- src/config/locales/ga-IE.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ga-IE.json b/src/config/locales/ga-IE.json index ff420a119..840bd4849 100644 --- a/src/config/locales/ga-IE.json +++ b/src/config/locales/ga-IE.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 7c7824d7a5719e744d6b8cba3090216349b413c4 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:55:58 +0300 Subject: [PATCH 063/255] New translations en-US.json (Indonesian) --- src/config/locales/id-ID.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/id-ID.json b/src/config/locales/id-ID.json index a69c5143e..4fb723b0d 100644 --- a/src/config/locales/id-ID.json +++ b/src/config/locales/id-ID.json @@ -150,7 +150,10 @@ "allRead": "Tandai semua pemberitahuan telah terbaca", "claim_reward_balance_ok": "Hadiah di klaim", "fail": "Gagal!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Tulisan anda berhasil dibagikan", + "success_moved": "Moved to draft", "permission_denied": "Izin ditolak", "permission_text": "Silakan buka pengaturan telepon dan ubah izin untuk aplikasi eSteem.", "success_rebloged": "Rebloged!", From 643e78c9ac77f8f255431bedd51be49e23fd5d2a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:00 +0300 Subject: [PATCH 064/255] New translations en-US.json (Icelandic) --- src/config/locales/is-IS.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/is-IS.json b/src/config/locales/is-IS.json index ff420a119..840bd4849 100644 --- a/src/config/locales/is-IS.json +++ b/src/config/locales/is-IS.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 091ea11b88392c82c28803222e362507c80914f5 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:01 +0300 Subject: [PATCH 065/255] New translations en-US.json (Hungarian) --- src/config/locales/hu-HU.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/hu-HU.json b/src/config/locales/hu-HU.json index 62ed501a5..05c3f158b 100644 --- a/src/config/locales/hu-HU.json +++ b/src/config/locales/hu-HU.json @@ -150,7 +150,10 @@ "allRead": "Minden értesítés megjelölve olvasottként", "claim_reward_balance_ok": "Jutalom egyenleg átvéve", "fail": "Sikertelen!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "A bejegyzésed sikeresen megosztva", + "success_moved": "Moved to draft", "permission_denied": "Engedély megtagadva", "permission_text": "Kérjük menj a telefon beállításokhoz és változtass az eSteem app engedélyezésein.", "success_rebloged": "Megosztva!", From 060ecb781e535d67750973b44408fb9f75efe73e Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:03 +0300 Subject: [PATCH 066/255] New translations en-US.json (Greek) --- src/config/locales/el-GR.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/el-GR.json b/src/config/locales/el-GR.json index ff420a119..840bd4849 100644 --- a/src/config/locales/el-GR.json +++ b/src/config/locales/el-GR.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 91de4a606b8157664fea9876be4f7b6e988a8d72 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:06 +0300 Subject: [PATCH 067/255] New translations en-US.json (Estonian) --- src/config/locales/et-EE.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/et-EE.json b/src/config/locales/et-EE.json index ff420a119..840bd4849 100644 --- a/src/config/locales/et-EE.json +++ b/src/config/locales/et-EE.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 87699e8baf6ae7577adc881df5895741d913d634 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:07 +0300 Subject: [PATCH 068/255] New translations en-US.json (Gothic) --- src/config/locales/got-DE.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/got-DE.json b/src/config/locales/got-DE.json index ff420a119..840bd4849 100644 --- a/src/config/locales/got-DE.json +++ b/src/config/locales/got-DE.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From c2cb6f6ea3a6b8e1099116a50493bc63c5af2e6f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:09 +0300 Subject: [PATCH 069/255] New translations en-US.json (German) --- src/config/locales/de-DE.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/de-DE.json b/src/config/locales/de-DE.json index b734c3241..34890463f 100644 --- a/src/config/locales/de-DE.json +++ b/src/config/locales/de-DE.json @@ -150,7 +150,10 @@ "allRead": "Alle Benachrichtigungen als gelesen markieren", "claim_reward_balance_ok": "Belohnung abgeholt", "fail": "Fehlgeschlagen!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Dein Beitrag wurde erfolgreich erstellt", + "success_moved": "Moved to draft", "permission_denied": "Berechtigung verweigert", "permission_text": "Bitte gehe zu den Telefoneinstellungen und ändere die Berechtigungen der eSteem-App.", "success_rebloged": "Geteilt!", From 452d16b90126284a6747a34243eb281be43249d6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:10 +0300 Subject: [PATCH 070/255] New translations en-US.json (Georgian) --- src/config/locales/ka-GE.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ka-GE.json b/src/config/locales/ka-GE.json index ff420a119..840bd4849 100644 --- a/src/config/locales/ka-GE.json +++ b/src/config/locales/ka-GE.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 2c1fa8fee6aa7854a0b9db0a9ce984e849637b22 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:12 +0300 Subject: [PATCH 071/255] New translations en-US.json (Galician) --- src/config/locales/gl-ES.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/gl-ES.json b/src/config/locales/gl-ES.json index ff420a119..840bd4849 100644 --- a/src/config/locales/gl-ES.json +++ b/src/config/locales/gl-ES.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 33ee2a57f1702135c8c4e2bbd13f0de0eaad6827 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:14 +0300 Subject: [PATCH 072/255] New translations en-US.json (French) --- src/config/locales/fr-FR.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/fr-FR.json b/src/config/locales/fr-FR.json index dd8329ec4..409ef6499 100644 --- a/src/config/locales/fr-FR.json +++ b/src/config/locales/fr-FR.json @@ -150,7 +150,10 @@ "allRead": "Marquer toutes les notifications comme lues", "claim_reward_balance_ok": "Solde de récompense réclamé", "fail": "Échec !", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Votre publication à été partagée avec succès", + "success_moved": "Moved to draft", "permission_denied": "Autorisation refusée", "permission_text": "S'il vous plaît, allez dans les Paramètres de votre téléphone et changez les permissions pour l’application eSteem.", "success_rebloged": "Rebloged!", From bd809b19381d71f1b7062a370ebd59793447f027 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:16 +0300 Subject: [PATCH 073/255] New translations en-US.json (Finnish) --- src/config/locales/fi-FI.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/fi-FI.json b/src/config/locales/fi-FI.json index 96fce0433..cd2b58e7e 100644 --- a/src/config/locales/fi-FI.json +++ b/src/config/locales/fi-FI.json @@ -150,7 +150,10 @@ "allRead": "Ilmoitukset merkattu luetuiksi", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Virhe!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Julkaisu jaettu onnistuneesti", + "success_moved": "Moved to draft", "permission_denied": "Käyttö estetty", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Re-steemattu!", From 70ce49eba321914eec876e1df4366ca6152a58f7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:17 +0300 Subject: [PATCH 074/255] New translations en-US.json (Filipino) --- src/config/locales/fil-PH.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/fil-PH.json b/src/config/locales/fil-PH.json index e3432e9eb..68030f300 100644 --- a/src/config/locales/fil-PH.json +++ b/src/config/locales/fil-PH.json @@ -150,7 +150,10 @@ "allRead": "Marked all notifications as read", "claim_reward_balance_ok": "Reward balance claimed", "fail": "Fail!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Your post succesfully shared", + "success_moved": "Moved to draft", "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", From 239ac66d2b64e3b76f4a4e9f394aee6ca65eeb69 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 17 Apr 2019 20:56:19 +0300 Subject: [PATCH 075/255] New translations en-US.json (Acehnese) --- src/config/locales/ac-ace.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/locales/ac-ace.json b/src/config/locales/ac-ace.json index 8d9720689..78233efd4 100644 --- a/src/config/locales/ac-ace.json +++ b/src/config/locales/ac-ace.json @@ -150,7 +150,10 @@ "allRead": "Tanda mandum haba nyang kalhëuh baca", "claim_reward_balance_ok": "Gaji kalhëuh klèm", "fail": "Gagai!", + "move": "Move", + "move_question": "Are you sure to move to drafts?", "success_shared": "Tulisan droen kalhëuh dibagi", + "success_moved": "Moved to draft", "permission_denied": "Hana izin", "permission_text": "Tulông kaloen bak aturan telepon dan gantoe izin app eSteem.", "success_rebloged": "Rebloged!", From 418dfe632fa28095bb4d126baf1c26ba90ffe94a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Thu, 18 Apr 2019 00:35:17 +0300 Subject: [PATCH 076/255] New translations en-US.json (Arabic) --- src/config/locales/ar-SA.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/locales/ar-SA.json b/src/config/locales/ar-SA.json index 63c93059d..05a7b196d 100644 --- a/src/config/locales/ar-SA.json +++ b/src/config/locales/ar-SA.json @@ -150,10 +150,10 @@ "allRead": "وضع جميع الإشعارات كأنها مقروءة", "claim_reward_balance_ok": "تم سحب المكافآت", "fail": "فشل!", - "move": "Move", - "move_question": "Are you sure to move to drafts?", + "move": "نقل", + "move_question": "هل أنت متأكد من نقل إلى المسودات؟", "success_shared": "مشاركتك تمت مشاركتها بنجاح", - "success_moved": "Moved to draft", + "success_moved": "تم النقل إلى المسودات", "permission_denied": "طلب الإذن مرفوض", "permission_text": "يرجى الانتقال إلى إعدادات الهاتف وتغيير أذونات تطبيق eSteem.", "success_rebloged": "أعيد تدوينه!", From 093989f3023e18a306180c42d1e414e981291aeb Mon Sep 17 00:00:00 2001 From: Feruz M Date: Thu, 18 Apr 2019 01:36:41 +0300 Subject: [PATCH 077/255] New translations en-US.json (Portuguese) --- src/config/locales/pt-PT.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/locales/pt-PT.json b/src/config/locales/pt-PT.json index 7c18cfa89..cdc4bc7cf 100644 --- a/src/config/locales/pt-PT.json +++ b/src/config/locales/pt-PT.json @@ -150,10 +150,10 @@ "allRead": "Marcar todas as notificações como lidas", "claim_reward_balance_ok": "Balanço de Recompensa reclamado", "fail": "Falha!", - "move": "Move", - "move_question": "Are you sure to move to drafts?", + "move": "Mover", + "move_question": "Tem certeza que deseja mover para rascunhos?", "success_shared": "Seu post partilhado com sucesso", - "success_moved": "Moved to draft", + "success_moved": "Movido para Rascunhos", "permission_denied": "Permissão negada", "permission_text": "Por favor, vá para configurações de telefone e alterar as permissões da app Steem.", "success_rebloged": "Reblogado!", From 38302c568a386071d361441aaebadddd09513b85 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Thu, 18 Apr 2019 02:33:44 +0300 Subject: [PATCH 078/255] New translations en-US.json (French) --- src/config/locales/fr-FR.json | 64 +++++++++++++++++------------------ 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/src/config/locales/fr-FR.json b/src/config/locales/fr-FR.json index 409ef6499..10a168478 100644 --- a/src/config/locales/fr-FR.json +++ b/src/config/locales/fr-FR.json @@ -19,7 +19,7 @@ "unfollow": "ne vous suit plus", "ignore": "vous a ignoré", "reblog": "a reblogué votre post", - "transfer": "transfered steem", + "transfer": "steem transférés", "comingsoon": "La fonctionnalité Classement arrive bientôt !", "notification": "Notifications", "leaderboard": "Classement", @@ -58,33 +58,33 @@ }, "settings": { "settings": "Réglages", - "general": "General", + "general": "Général", "currency": "Devise", "language": "Langue", "server": "Serveur", "dark_theme": "Thème Sombre", "push_notification": "Notification push", "notification": { - "follow": "Follow", + "follow": "Abonné", "vote": "Vote", - "comment": "Comment", + "comment": "Commentaire", "mention": "Mention", "reblog": "Reblog", - "transfers": "Transfers" + "transfers": "Transferts" }, "pincode": "Pincode", "reset": "Réinitialiser", - "nsfw_content": "NSFW Content", - "send_feedback": "Send Feedback", - "send": "Send", - "default_footer": "Default Footer", + "nsfw_content": "Contenu NSFW", + "send_feedback": "Envoyer une suggestion", + "send": "Envoyer", + "default_footer": "Pied de page par défaut", "nsfw": { - "always_show": "Always show", - "always_hide": "Always hide", - "always_warn": "Always warn" + "always_show": "Toujours afficher", + "always_hide": "Toujours masquer", + "always_warn": "Toujours avertir" }, - "feedback_success": "Email successfully open", - "feedback_fail": "Email client could not open" + "feedback_success": "E-mail ouvert avec succès", + "feedback_fail": "Le client e-mail n'a pas pu être ouvert" }, "voters": { "voters_info": "Info des votants", @@ -136,8 +136,8 @@ "reply_placeholder": "Qu'aimeriez-vous écrire à propos de l'article ci-dessus ?", "publish": "Publier", "reply": "Répondre", - "open_galery": "Open Galery", - "capture_photo": "Capture a photo" + "open_galery": "Ouvrir la galerie", + "capture_photo": "Prendre une photo" }, "pincode": { "enter_text": "Enter pin to unlock", @@ -150,10 +150,10 @@ "allRead": "Marquer toutes les notifications comme lues", "claim_reward_balance_ok": "Solde de récompense réclamé", "fail": "Échec !", - "move": "Move", - "move_question": "Are you sure to move to drafts?", + "move": "Déplacer", + "move_question": "Êtes-vous sûr de vouloir déplacer vers Broullions ?", "success_shared": "Votre publication à été partagée avec succès", - "success_moved": "Moved to draft", + "success_moved": "Déplacé vers Brouillons", "permission_denied": "Autorisation refusée", "permission_text": "S'il vous plaît, allez dans les Paramètres de votre téléphone et changez les permissions pour l’application eSteem.", "success_rebloged": "Rebloged!", @@ -161,13 +161,13 @@ "warning": "Attention", "invalid_pincode": "Invalid pin code, please check and try again.", "remove_alert": "Êtes-vous sûr de vouloir retirer ?", - "clear_alert": "Are you sure you want to clear?", - "clear_user_alert": "Are you sure you want to clear all user data?", - "clear": "Clear", + "clear_alert": "Êtes-vous sûr de vouloir effacer ?", + "clear_user_alert": "Êtes-vous sûr de vouloir effacer toutes les données utilisateur ?", + "clear": "Effacer", "cancel": "Annuler", "delete": "Supprimer", - "copied": "Copied!", - "no_internet": "No connection!" + "copied": "Copié !", + "no_internet": "Pas de connexion !" }, "post": { "reblog_alert": "Êtes-vous sûr de vouloir rebloguer ?" @@ -191,8 +191,8 @@ "empty_list": "Rien ici", "deleted": "Signet supprimé", "search": "Rechercher dans les signets", - "added": "Added to bookmarks", - "add": "Add to bookmarks" + "added": "Ajouté aux signets", + "add": "Ajouter aux signets" }, "favorites": { "title": "Favoris", @@ -219,20 +219,20 @@ "reblog": "rebloguer", "reply": "répondre", "share": "partager", - "bookmarks": "add to bookmarks" + "bookmarks": "ajouter aux signets" }, "deep_link": { "no_existing_user": "Utilisateur inexistant", "no_existing_post": "Post inexistant" }, "search": { - "posts": "Posts", - "comments": "Comments" + "posts": "Publications", + "comments": "Commentaires" }, "comment_filter": { - "trending": "trending", - "reputation": "reputation", + "trending": "tendances", + "reputation": "réputation", "votes": "votes", - "age": "age" + "age": "âge" } } From 6b4f8204cd0c779ece55f9512780cc614ae4c0bc Mon Sep 17 00:00:00 2001 From: Feruz M Date: Thu, 18 Apr 2019 02:33:45 +0300 Subject: [PATCH 079/255] New translations en-US.json (Malay) --- src/config/locales/ms-MY.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/locales/ms-MY.json b/src/config/locales/ms-MY.json index 0b3abf0b9..3d85ceb73 100644 --- a/src/config/locales/ms-MY.json +++ b/src/config/locales/ms-MY.json @@ -150,10 +150,10 @@ "allRead": "Tandakan semua pemberitahuan sebagai telah dibaca", "claim_reward_balance_ok": "Baki ganjaran telah dituntut", "fail": "Gagal!", - "move": "Move", - "move_question": "Are you sure to move to drafts?", + "move": "Pindah", + "move_question": "Adakah anda pasti hendak mengalih ke Draf?", "success_shared": "Pos anda berjaya disiarkan", - "success_moved": "Moved to draft", + "success_moved": "Pindah kepada Draf", "permission_denied": "Tidak dibenarkan", "permission_text": "Sila pergi ke tetapan telefon dan mengubah keizinan keyakinan eSteem app.", "success_rebloged": "Rebloged!", From 0b31e4f05833701a7f8afeb5d250e72f8cd53a7a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Thu, 18 Apr 2019 02:45:10 +0300 Subject: [PATCH 080/255] New translations en-US.json (French) --- src/config/locales/fr-FR.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/locales/fr-FR.json b/src/config/locales/fr-FR.json index 10a168478..63b1f785e 100644 --- a/src/config/locales/fr-FR.json +++ b/src/config/locales/fr-FR.json @@ -100,7 +100,7 @@ "cancel": "annuler", "login": "CONNEXION", "steemconnect_description": "Si vous ne voulez pas garder votre mot de passe chiffré et enregistré sur votre appareil, vous pouvez utiliser Steemconnect.", - "steemconnect_fee_description": "Steemconnect may charge some fees from your reward transactions" + "steemconnect_fee_description": "Steemconnect peut facturer des frais sur vos transactions de récompense" }, "home": { "feed": "Fil d'actualités", From a2cd177bb6799839cc6ffd2d5d37d3f350d94b9e Mon Sep 17 00:00:00 2001 From: Mustafa Buyukcelebi Date: Thu, 18 Apr 2019 16:34:14 +0300 Subject: [PATCH 081/255] Working on transfer feature --- .../wallet/container/walletContainer.js | 5 +- src/components/wallet/view/walletView.js | 7 +- .../container/walletDetailsContainer.js | 14 +-- src/providers/steem/dsteem.js | 92 ++++++++++++++----- .../profile/container/profileContainer.js | 28 +++--- src/screens/profile/screen/profileScreen.js | 2 + .../settings/container/settingsContainer.js | 3 - .../transfer/container/transferContainer.js | 23 ++++- 8 files changed, 123 insertions(+), 51 deletions(-) diff --git a/src/components/wallet/container/walletContainer.js b/src/components/wallet/container/walletContainer.js index 4a42f104e..b9167bcda 100644 --- a/src/components/wallet/container/walletContainer.js +++ b/src/components/wallet/container/walletContainer.js @@ -138,7 +138,9 @@ class WalletContainer extends Component { }; render() { - const { currentAccount, selectedUser, isDarkTheme } = this.props; + const { + currentAccount, selectedUser, isDarkTheme, setPinCodeState, + } = this.props; const { walletData, isClaiming, isRefreshing } = this.state; return ( @@ -151,6 +153,7 @@ class WalletContainer extends Component { handleOnWalletRefresh={this._handleOnWalletRefresh} isRefreshing={isRefreshing} isDarkTheme={isDarkTheme} + setPinCodeState={setPinCodeState} /> ); } diff --git a/src/components/wallet/view/walletView.js b/src/components/wallet/view/walletView.js index 772c1380b..9f96b5b06 100644 --- a/src/components/wallet/view/walletView.js +++ b/src/components/wallet/view/walletView.js @@ -55,6 +55,7 @@ class WalletView extends PureComponent { selectedUsername, walletData, isDarkTheme, + setPinCodeState, } = this.props; return ( @@ -113,7 +114,11 @@ class WalletView extends PureComponent { })} expanded > - + diff --git a/src/components/walletDetails/container/walletDetailsContainer.js b/src/components/walletDetails/container/walletDetailsContainer.js index 163f18f26..da03ff365 100644 --- a/src/components/walletDetails/container/walletDetailsContainer.js +++ b/src/components/walletDetails/container/walletDetailsContainer.js @@ -1,9 +1,12 @@ import React, { PureComponent } from 'react'; import { withNavigation } from 'react-navigation'; +import { connect } from 'react-redux'; // Constants import ROUTES from '../../../constants/routeNames'; +import { openPinCodeModal } from '../../../redux/actions/applicationActions'; + // Component import WalletDetailsView from '../view/walletDetailsView'; @@ -24,11 +27,10 @@ class WalletContainer extends PureComponent { // Component Functions _navigate = () => { - const { navigation } = this.props; - console.log('navigation :', navigation); - navigation.navigate({ - routeName: ROUTES.SCREENS.TRANSFER, - }); + const { dispatch, setPinCodeState } = this.props; + + setPinCodeState({ navigateTo: ROUTES.SCREENS.TRANSFER }); + dispatch(openPinCodeModal()); }; render() { @@ -38,4 +40,4 @@ class WalletContainer extends PureComponent { } } -export default withNavigation(WalletContainer); +export default connect()(withNavigation(WalletContainer)); diff --git a/src/providers/steem/dsteem.js b/src/providers/steem/dsteem.js index 695349c97..174c2fb99 100644 --- a/src/providers/steem/dsteem.js +++ b/src/providers/steem/dsteem.js @@ -388,13 +388,10 @@ export const getPostWithComments = async (user, permlink) => { * @param postingKey private posting key */ -export const vote = (account, pin, author, permlink, weight) => _vote( - account, pin, author, permlink, weight, -) - .then((resp) => { - userActivity(account.username, 120, resp.block_num, resp.id); - return resp; - }); +export const vote = (account, pin, author, permlink, weight) => _vote(account, pin, author, permlink, weight).then((resp) => { + userActivity(account.username, 120, resp.block_num, resp.id); + return resp; +}); const _vote = async (currentAccount, pin, author, permlink, weight) => { const digitPinCode = getDigitPinCode(pin); @@ -462,18 +459,69 @@ export const upvoteAmount = async (input) => { return estimated; }; -export const transferToken = (data, activeKey) => { - const key = PrivateKey.fromString(activeKey); - return new Promise((resolve, reject) => { - client.broadcast - .transfer(data, key) - .then((result) => { - resolve(result); - }) - .catch((err) => { - reject(err); - }); - }); +export const transferToken = (currentAccount, pin, data) => { + const digitPinCode = getDigitPinCode(pin); + const key = getAnyPrivateKey({ activeKey: currentAccount.local.activeKey }, digitPinCode); + + if (currentAccount.local.authType === AUTH_TYPE.STEEM_CONNECT) { + const token = decryptKey(currentAccount.local.accessToken, digitPinCode); + console.log('currentAccount.local :', currentAccount.local); + console.log('token :', token); + const api = steemConnect.Initialize({ + accessToken: token, + }); + console.log('api :', api); + const opArr = []; + + const e = [ + 'transfer', + { + from: data.from, + to: data.destination, + amount: { + amount: data.amount, + precision: 3, + nai: '@@000000021', + }, + memo: 'Thanks for all the fish.', + }, + ]; + opArr.push(e); + console.log('opArr :', opArr); + api + .broadcast(opArr) + .then(res => console.log('res1111111 :', res)) + .catch(err => console.log('err1111111 :', Object.keys(err), err.name, err.error, err.error_description)); + + return api.broadcast(opArr); + } + + if (key) { + const privateKey = PrivateKey.fromString(key); + const args = { + from: data.from, + to: data.destination, + amount: `${data.amount} STEEM`, + memo: data.memo, + }; + + console.log('args :', args); + console.log('privateKey :', privateKey); + console.log('key :', key); + + return new Promise((resolve, reject) => { + client.broadcast + .transfer(args, privateKey) + .then((result) => { + resolve(result); + }) + .catch((err) => { + reject(err); + }); + }); + } + + return Promise.reject(new Error('You dont have permission!')); }; export const followUser = async (currentAccount, pin, data) => { @@ -786,9 +834,7 @@ const _postContent = async ( // Re-blog // TODO: remove pinCode -export const reblog = (account, pinCode, author, permlink) => _reblog( - account, pinCode, author, permlink, -).then((resp) => { +export const reblog = (account, pinCode, author, permlink) => _reblog(account, pinCode, author, permlink).then((resp) => { userActivity(account.name, 130, resp.block_num, resp.id); return resp; }); @@ -874,7 +920,7 @@ const getAnyPrivateKey = (local, pin) => { } if (activeKey) { - return decryptKey(local.postingKey, pin); + return decryptKey(local.activeKey, pin); } return false; diff --git a/src/screens/profile/container/profileContainer.js b/src/screens/profile/container/profileContainer.js index 00f2460ae..36276adce 100644 --- a/src/screens/profile/container/profileContainer.js +++ b/src/screens/profile/container/profileContainer.js @@ -76,10 +76,7 @@ class ProfileContainer extends Component { componentWillReceiveProps(nextProps) { const { - navigation, - currentAccount, - activeBottomTab, - isLoggedIn, + navigation, currentAccount, activeBottomTab, isLoggedIn, } = this.props; const currentUsername = currentAccount.name !== nextProps.currentAccount.name && nextProps.currentAccount.name; @@ -201,19 +198,19 @@ class ProfileContainer extends Component { const { username } = this.state; if (error) { - this.setState({ - error, - }, () => alert(error)); + this.setState( + { + error, + }, + () => alert(error), + ); } else { this._fetchProfile(username, true); } }; - _fetchProfile = async (username = null, isProfileAction = false) => { - const { - username: _username, isFollowing, isMuted, - } = this.state; + const { username: _username, isFollowing, isMuted } = this.state; if (username) { const { isLoggedIn, currentAccount } = this.props; @@ -239,9 +236,9 @@ class ProfileContainer extends Component { } /** - * This follow code totally a work arround - * Ceated for server response delay. - */ + * This follow code totally a work arround + * Ceated for server response delay. + */ if (isProfileAction && (isFollowing === _isFollowing && isMuted === _isMuted)) { this._fetchProfile(_username, true); } else { @@ -355,7 +352,7 @@ class ProfileContainer extends Component { username, } = this.state; const { - isDarkTheme, isLoggedIn, currency, navigation, + isDarkTheme, isLoggedIn, currency, navigation, setPinCodeState, } = this.props; const activePage = (navigation.state.params && navigation.state.params.activePage) || 0; @@ -385,6 +382,7 @@ class ProfileContainer extends Component { selectedQuickProfile={selectedQuickProfile} selectedUser={user} username={username} + setPinCodeState={setPinCodeState} /> ); } diff --git a/src/screens/profile/screen/profileScreen.js b/src/screens/profile/screen/profileScreen.js index 19b065418..2f4cd63bf 100644 --- a/src/screens/profile/screen/profileScreen.js +++ b/src/screens/profile/screen/profileScreen.js @@ -84,6 +84,7 @@ class ProfileScreen extends PureComponent { selectedUser, username, activePage, + setPinCodeState, } = this.props; const { @@ -249,6 +250,7 @@ class ProfileScreen extends PureComponent { ) : ( diff --git a/src/screens/settings/container/settingsContainer.js b/src/screens/settings/container/settingsContainer.js index 3ca60a266..d5ec992d4 100644 --- a/src/screens/settings/container/settingsContainer.js +++ b/src/screens/settings/container/settingsContainer.js @@ -12,9 +12,7 @@ import { setCurrency as setCurrency2DB, setServer, setNotificationSettings, - setDefaultFooter, setLanguage as setLanguage2DB, - setNotificationIsOpen, setNsfw as setNsfw2DB, setTheme, } from '../../../realm/realm'; @@ -27,7 +25,6 @@ import { setApi, isDarkTheme, isDefaultFooter, - isNotificationOpen, openPinCodeModal, setNsfw, } from '../../../redux/actions/applicationActions'; diff --git a/src/screens/transfer/container/transferContainer.js b/src/screens/transfer/container/transferContainer.js index 45d8c0984..797b345b9 100644 --- a/src/screens/transfer/container/transferContainer.js +++ b/src/screens/transfer/container/transferContainer.js @@ -2,7 +2,8 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; // Services and Actions -import { lookupAccounts } from '../../../providers/steem/dsteem'; +import { lookupAccounts, transferToken } from '../../../providers/steem/dsteem'; +import { toastNotification } from '../../../redux/actions/uiAction'; // Middleware @@ -34,7 +35,23 @@ class ExampleContainer extends Component { }; _transferToAccount = (from, destination, amount, memo) => { - console.log('from, destination, amount, memo, :', from, destination, amount, memo); + const { + currentAccount, pinCode, navigation, dispatch, + } = this.props; + + const data = { + from, + destination, + amount, + memo, + }; + + transferToken(currentAccount, pinCode, data) + .then((res) => { + dispatch(toastNotification('Successfull')); + navigation.goBack(); + }) + .catch(err => dispatch(toastNotification(err))); }; render() { @@ -52,6 +69,8 @@ class ExampleContainer extends Component { const mapStateToProps = state => ({ accounts: state.account.otherAccounts, + currentAccount: state.account.currentAccount, + pinCode: state.account.pin, }); export default connect(mapStateToProps)(ExampleContainer); From a3f4378380e8ad3bccb8f02adb0337c2dff81be2 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Thu, 18 Apr 2019 20:45:27 +0300 Subject: [PATCH 082/255] New translations en-US.json (Hindi) --- src/config/locales/hi-IN.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/locales/hi-IN.json b/src/config/locales/hi-IN.json index c0467c409..736c9c170 100644 --- a/src/config/locales/hi-IN.json +++ b/src/config/locales/hi-IN.json @@ -150,10 +150,10 @@ "allRead": "सभी सूचनाओं को पढ़ लिया चिन्हित करें", "claim_reward_balance_ok": "इनाम की राशी ले चुके", "fail": "असफल!", - "move": "Move", - "move_question": "Are you sure to move to drafts?", + "move": "हटाना", + "move_question": "क्या आप ड्राफ्ट में जाना सुनिश्चित करते हैं?", "success_shared": "आपका पोस्ट सफलतापूर्ण साझा हो गया", - "success_moved": "Moved to draft", + "success_moved": "ड्राफ्ट में ले जाया गया", "permission_denied": "अनुमोदन अस्वीकृत हुवा", "permission_text": "कृपया, अपने फ़ोन समायोजन में जाएँ और इस्टीम एप्प की अनुमोदन बदलें|", "success_rebloged": "Rebloged!", From 971f2725e60a3475edd3e0d902deecce93fa2a0d Mon Sep 17 00:00:00 2001 From: Mustafa Buyukcelebi Date: Fri, 19 Apr 2019 18:35:13 +0300 Subject: [PATCH 083/255] Implemented steem connect transfer --- src/constants/steemConnectOptions.js | 6 ++++ .../transfer/container/transferContainer.js | 9 ++++- src/screens/transfer/screen/transferScreen.js | 36 ++++++++++++++++--- 3 files changed, 45 insertions(+), 6 deletions(-) create mode 100644 src/constants/steemConnectOptions.js diff --git a/src/constants/steemConnectOptions.js b/src/constants/steemConnectOptions.js new file mode 100644 index 000000000..b58523b00 --- /dev/null +++ b/src/constants/steemConnectOptions.js @@ -0,0 +1,6 @@ +export const steemConnectOptions = { + base_url: 'https://app.steemconnect.com/', + client_id: 'esteem-app', + redirect_uri: 'http://127.0.0.1:3415/', // http://127.0.0.1:3415 + scope: 'vote,comment,delete_comment,comment_options,custom_json,claim_reward_balance,offline', +}; diff --git a/src/screens/transfer/container/transferContainer.js b/src/screens/transfer/container/transferContainer.js index 797b345b9..2571bf344 100644 --- a/src/screens/transfer/container/transferContainer.js +++ b/src/screens/transfer/container/transferContainer.js @@ -54,14 +54,21 @@ class ExampleContainer extends Component { .catch(err => dispatch(toastNotification(err))); }; + _handleOnModalClose = () => { + const { navigation } = this.props; + navigation.goBack(); + }; + render() { - const { accounts } = this.props; + const { accounts, currentAccount } = this.props; return ( ); } diff --git a/src/screens/transfer/screen/transferScreen.js b/src/screens/transfer/screen/transferScreen.js index a246f8ed5..22d0da35b 100644 --- a/src/screens/transfer/screen/transferScreen.js +++ b/src/screens/transfer/screen/transferScreen.js @@ -1,9 +1,12 @@ /* eslint-disable no-restricted-globals */ import React, { Fragment, Component } from 'react'; -import { Text, View } from 'react-native'; +import { Text, View, WebView } from 'react-native'; import ActionSheet from 'react-native-actionsheet'; import { injectIntl } from 'react-intl'; +import { steemConnectOptions } from '../../../constants/steemConnectOptions'; +import AUTH_TYPE from '../../../constants/authType'; + import { BasicHeader } from '../../../components/basicHeader'; import { TextInput } from '../../../components/textInput'; import { TransferFormItem } from '../../../components/transferFormItem'; @@ -11,6 +14,7 @@ import { MainButton } from '../../../components/mainButton'; import { DropdownButton } from '../../../components/dropdownButton'; import { UserAvatar } from '../../../components/userAvatar'; import { Icon } from '../../../components/icon'; +import { Modal } from '../../../components/modal'; import styles from './transferStyles'; /* Props @@ -27,6 +31,7 @@ class TransferView extends Component { amount: '', memo: '', isUsernameValid: false, + steemConnectTransfer: false, }; } @@ -58,12 +63,16 @@ class TransferView extends Component { }; _handleTransferAction = () => { - const { transferToAccount } = this.props; + const { transferToAccount, accountType } = this.props; const { from, destination, amount, memo, } = this.state; - transferToAccount(from, destination, amount, memo); + if (accountType === AUTH_TYPE.STEEM_CONNECT) { + this.setState({ steemConnectTransfer: true }); + } else { + transferToAccount(from, destination, amount, memo); + } }; _renderInput = (placeholder, state) => ( @@ -91,8 +100,16 @@ class TransferView extends Component { _renderDescription = text => {text}; render() { - const { accounts, intl } = this.props; - const { destination, isUsernameValid, amount } = this.state; + const { accounts, intl, handleOnModalClose } = this.props; + const { + destination, isUsernameValid, amount, steemConnectTransfer, memo, + } = this.state; + + const path = `sign/transfer?from=${ + accounts[0].username + }&to=${destination}&amount=${encodeURIComponent(`${amount} STEEM`)}&memo=${encodeURIComponent( + memo, + )}`; return ( @@ -162,6 +179,15 @@ class TransferView extends Component { index === 0 ? this._handleTransferAction() : null; }} /> + + + ); } From f8cf47e928089fe2346b8ef64e7886be4c55a863 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Sun, 21 Apr 2019 17:53:34 +0300 Subject: [PATCH 084/255] New translations en-US.json (Turkish) --- src/config/locales/tr-TR.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/locales/tr-TR.json b/src/config/locales/tr-TR.json index 880f4a582..57da9822e 100644 --- a/src/config/locales/tr-TR.json +++ b/src/config/locales/tr-TR.json @@ -150,10 +150,10 @@ "allRead": "Tüm bildirimleri okundu olarak işaretle", "claim_reward_balance_ok": "Ödül alındı", "fail": "Başarısız!", - "move": "Move", - "move_question": "Are you sure to move to drafts?", + "move": "Taşı", + "move_question": "Taslaklara taşıyacağınızdan emin misiniz?", "success_shared": "Gönderin başarıyla paylaşıldı", - "success_moved": "Moved to draft", + "success_moved": "Taslağa taşındı", "permission_denied": "İzin reddedildi", "permission_text": "Lütfen telefon ayarlarına gidin ve eSteem'in izinlerini açın.", "success_rebloged": "Rebloged!", From 42d90464a1b7367a6e35ca99bd44f50da8bf8857 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 22 Apr 2019 11:34:24 +0300 Subject: [PATCH 085/255] New translations en-US.json (Acehnese) --- src/config/locales/ac-ace.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/locales/ac-ace.json b/src/config/locales/ac-ace.json index 78233efd4..3f10d16d4 100644 --- a/src/config/locales/ac-ace.json +++ b/src/config/locales/ac-ace.json @@ -150,10 +150,10 @@ "allRead": "Tanda mandum haba nyang kalhëuh baca", "claim_reward_balance_ok": "Gaji kalhëuh klèm", "fail": "Gagai!", - "move": "Move", - "move_question": "Are you sure to move to drafts?", + "move": "Pinah", + "move_question": "Peu neuyakin neuk pinah lam draft?", "success_shared": "Tulisan droen kalhëuh dibagi", - "success_moved": "Moved to draft", + "success_moved": "Klaheuh na lam draft", "permission_denied": "Hana izin", "permission_text": "Tulông kaloen bak aturan telepon dan gantoe izin app eSteem.", "success_rebloged": "Rebloged!", From 78f0bbe0fe44a57a25d9f74360e4ac0b396dafcc Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 22 Apr 2019 11:43:48 +0300 Subject: [PATCH 086/255] New translations en-US.json (Acehnese) --- src/config/locales/ac-ace.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/config/locales/ac-ace.json b/src/config/locales/ac-ace.json index 3f10d16d4..582a701c9 100644 --- a/src/config/locales/ac-ace.json +++ b/src/config/locales/ac-ace.json @@ -66,7 +66,7 @@ "push_notification": "Teugön Haba", "notification": { "follow": "Follow", - "vote": "Vote", + "vote": "Pilèh", "comment": "Comment", "mention": "Mention", "reblog": "Reblog", @@ -230,9 +230,9 @@ "comments": "Comments" }, "comment_filter": { - "trending": "trending", - "reputation": "reputation", - "votes": "votes", - "age": "age" + "trending": "mëucuhu", + "reputation": "reputasi", + "votes": "pilèh-pilèh", + "age": "umuë" } } From 8b863b44ac90c31d81adc31117cd4783faf6c9bb Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 22 Apr 2019 12:04:43 +0300 Subject: [PATCH 087/255] New translations en-US.json (Acehnese) --- src/config/locales/ac-ace.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/config/locales/ac-ace.json b/src/config/locales/ac-ace.json index 582a701c9..cff5d3938 100644 --- a/src/config/locales/ac-ace.json +++ b/src/config/locales/ac-ace.json @@ -19,7 +19,7 @@ "unfollow": "piyôh ikut dröen", "ignore": "hanapeureumeun dröen", "reblog": "postingan dröen ka di reblog", - "transfer": "transfered steem", + "transfer": "steem kalhëuh meukirèm", "comingsoon": "Papeun ranking akan seugeura lheuh!", "notification": "Bithé", "leaderboard": "Papeun Rangking", @@ -58,30 +58,30 @@ }, "settings": { "settings": "Peungaturan", - "general": "General", + "general": "Umum", "currency": "Mata péng", "language": "Basa", "server": "Server", "dark_theme": "Layeu Supôet", "push_notification": "Teugön Haba", "notification": { - "follow": "Follow", + "follow": "Iköt", "vote": "Pilèh", - "comment": "Comment", - "mention": "Mention", + "comment": "Komentar", + "mention": "Seuböt", "reblog": "Reblog", - "transfers": "Transfers" + "transfers": "Kirèm" }, "pincode": "Kode PIN", "reset": "Atôe ulang", - "nsfw_content": "NSFW Content", + "nsfw_content": "Konten urëung chik", "send_feedback": "Send Feedback", - "send": "Send", + "send": "Kirèm", "default_footer": "Default Footer", "nsfw": { "always_show": "Always show", - "always_hide": "Always hide", - "always_warn": "Always warn" + "always_hide": "Söm Sabè", + "always_warn": "Sabë pëuingat" }, "feedback_success": "Email successfully open", "feedback_fail": "Email client could not open" @@ -162,7 +162,7 @@ "invalid_pincode": "Salah pin, cie neu test loëm.", "remove_alert": "Peu yakin neuk sampóh?", "clear_alert": "Peu yakin neuk sampöh?", - "clear_user_alert": "Are you sure you want to clear all user data?", + "clear_user_alert": "Pëu yakin nëuk sampöh mandum data pöe?", "clear": "Sampöh", "cancel": "Batai", "delete": "Sampóh", @@ -226,8 +226,8 @@ "no_existing_post": "Hana haba sapeu" }, "search": { - "posts": "Posts", - "comments": "Comments" + "posts": "Post", + "comments": "Komentar-komentar" }, "comment_filter": { "trending": "mëucuhu", From 240dabdaa9362143a5fa061754d4460dd2d6142e Mon Sep 17 00:00:00 2001 From: Mustafa Buyukcelebi Date: Tue, 23 Apr 2019 11:47:12 +0300 Subject: [PATCH 088/255] Working on transfer feature --- .../Pods-esteem/Pods-esteem.debug.xcconfig | 1 + .../Pods-esteem/Pods-esteem.release.xcconfig | 1 + .../Pods-esteemTests.debug.xcconfig | 1 + .../Pods-esteemTests.release.xcconfig | 1 + .../container/walletDetailsContainer.js | 11 +- src/providers/steem/dsteem.js | 158 +++++++++++------- src/providers/steem/steemConnect.js | 7 +- .../transfer/container/transferContainer.js | 43 ++++- 8 files changed, 149 insertions(+), 74 deletions(-) diff --git a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.debug.xcconfig b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.debug.xcconfig index 0695013b2..d39c7d90b 100644 --- a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.debug.xcconfig @@ -9,3 +9,4 @@ PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods +USER_HEADER_SEARCH_PATHS = $(inherited) $(SRCROOT)/FLAnimatedImage/FLAnimatedImage diff --git a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.release.xcconfig b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.release.xcconfig index 0695013b2..d39c7d90b 100644 --- a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.release.xcconfig @@ -9,3 +9,4 @@ PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods +USER_HEADER_SEARCH_PATHS = $(inherited) $(SRCROOT)/FLAnimatedImage/FLAnimatedImage diff --git a/ios/Pods/Target Support Files/Pods-esteemTests/Pods-esteemTests.debug.xcconfig b/ios/Pods/Target Support Files/Pods-esteemTests/Pods-esteemTests.debug.xcconfig index 1a1659871..e629a3239 100644 --- a/ios/Pods/Target Support Files/Pods-esteemTests/Pods-esteemTests.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-esteemTests/Pods-esteemTests.debug.xcconfig @@ -8,3 +8,4 @@ PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods +USER_HEADER_SEARCH_PATHS = $(inherited) $(SRCROOT)/FLAnimatedImage/FLAnimatedImage diff --git a/ios/Pods/Target Support Files/Pods-esteemTests/Pods-esteemTests.release.xcconfig b/ios/Pods/Target Support Files/Pods-esteemTests/Pods-esteemTests.release.xcconfig index 1a1659871..e629a3239 100644 --- a/ios/Pods/Target Support Files/Pods-esteemTests/Pods-esteemTests.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-esteemTests/Pods-esteemTests.release.xcconfig @@ -8,3 +8,4 @@ PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods +USER_HEADER_SEARCH_PATHS = $(inherited) $(SRCROOT)/FLAnimatedImage/FLAnimatedImage diff --git a/src/components/walletDetails/container/walletDetailsContainer.js b/src/components/walletDetails/container/walletDetailsContainer.js index da03ff365..aadf1b692 100644 --- a/src/components/walletDetails/container/walletDetailsContainer.js +++ b/src/components/walletDetails/container/walletDetailsContainer.js @@ -27,10 +27,15 @@ class WalletContainer extends PureComponent { // Component Functions _navigate = () => { - const { dispatch, setPinCodeState } = this.props; + const { dispatch, setPinCodeState, navigation } = this.props; - setPinCodeState({ navigateTo: ROUTES.SCREENS.TRANSFER }); - dispatch(openPinCodeModal()); + navigation.navigate(ROUTES.SCREENS.TRANSFER, { + transferType: 'transferToSaving', + fundType: 'STEEM', + }); + + // setPinCodeState({ navigateTo: ROUTES.SCREENS.TRANSFER, navigateParams: {transferType: 'sbd'} }); + // dispatch(openPinCodeModal()); }; render() { diff --git a/src/providers/steem/dsteem.js b/src/providers/steem/dsteem.js index 174c2fb99..f93963709 100644 --- a/src/providers/steem/dsteem.js +++ b/src/providers/steem/dsteem.js @@ -463,52 +463,15 @@ export const transferToken = (currentAccount, pin, data) => { const digitPinCode = getDigitPinCode(pin); const key = getAnyPrivateKey({ activeKey: currentAccount.local.activeKey }, digitPinCode); - if (currentAccount.local.authType === AUTH_TYPE.STEEM_CONNECT) { - const token = decryptKey(currentAccount.local.accessToken, digitPinCode); - console.log('currentAccount.local :', currentAccount.local); - console.log('token :', token); - const api = steemConnect.Initialize({ - accessToken: token, - }); - console.log('api :', api); - const opArr = []; - - const e = [ - 'transfer', - { - from: data.from, - to: data.destination, - amount: { - amount: data.amount, - precision: 3, - nai: '@@000000021', - }, - memo: 'Thanks for all the fish.', - }, - ]; - opArr.push(e); - console.log('opArr :', opArr); - api - .broadcast(opArr) - .then(res => console.log('res1111111 :', res)) - .catch(err => console.log('err1111111 :', Object.keys(err), err.name, err.error, err.error_description)); - - return api.broadcast(opArr); - } - if (key) { const privateKey = PrivateKey.fromString(key); const args = { from: data.from, to: data.destination, - amount: `${data.amount} STEEM`, + amount: data.amount, memo: data.memo, }; - console.log('args :', args); - console.log('privateKey :', privateKey); - console.log('key :', key); - return new Promise((resolve, reject) => { client.broadcast .transfer(args, privateKey) @@ -524,6 +487,101 @@ export const transferToken = (currentAccount, pin, data) => { return Promise.reject(new Error('You dont have permission!')); }; +export const transferToSavings = (currentAccount, pin, data) => { + const digitPinCode = getDigitPinCode(pin); + const key = getAnyPrivateKey({ activeKey: currentAccount.local.activeKey }, digitPinCode); + + if (key) { + const privateKey = PrivateKey.fromString(key); + const args = [ + 'transfer_to_savings', + { + from: data.from, + to: data.destination, + amount: data.amount, + memo: data.memo, + }, + ]; + + console.log('args :', args); + + return new Promise((resolve, reject) => { + client.broadcast + .sendOperations(args, privateKey) + .then((result) => { + resolve(result); + }) + .catch((err) => { + reject(err); + }); + }); + } + + return Promise.reject(new Error('You dont have permission!')); +}; + +export const transferFromSavings = (currentAccount, pin, data) => { + const digitPinCode = getDigitPinCode(pin); + const key = getAnyPrivateKey({ activeKey: currentAccount.local.activeKey }, digitPinCode); + + if (key) { + const privateKey = PrivateKey.fromString(key); + const args = [ + 'transfer_from_savings', + { + from: data.from, + to: data.destination, + amount: data.amount, + memo: data.memo, + request_id: data.requestId, + }, + ]; + + return new Promise((resolve, reject) => { + client.broadcast + .sendOperations(args, privateKey) + .then((result) => { + resolve(result); + }) + .catch((err) => { + reject(err); + }); + }); + } + + return Promise.reject(new Error('You dont have permission!')); +}; + +export const transferToVesting = (currentAccount, pin, data) => { + const digitPinCode = getDigitPinCode(pin); + const key = getAnyPrivateKey({ activeKey: currentAccount.local.activeKey }, digitPinCode); + + if (key) { + const privateKey = PrivateKey.fromString(key); + const args = [ + 'transfer_to_vesting', + { + from: data.from, + to: data.destination, + amount: data.amount, + }, + ]; + + return new Promise((resolve, reject) => { + client.broadcast + .sendOperations(args, privateKey) + .then((result) => { + resolve(result); + }) + .catch((err) => { + reject(err); + }); + }); + } + + return Promise.reject(new Error('You dont have permission!')); +}; + export const followUser = async (currentAccount, pin, data) => { const digitPinCode = getDigitPinCode(pin); const key = getAnyPrivateKey(currentAccount.local, digitPinCode); @@ -628,30 +686,6 @@ export const delegate = (data, activeKey) => { }); }; -export const transferToVesting = (data, activeKey) => { - const privateKey = PrivateKey.fromString(activeKey); - - const op = [ - 'transfer_to_vesting', - { - from: data.from, - to: data.to, - amount: data.amount, - }, - ]; - - return new Promise((resolve, reject) => { - client.broadcast - .sendOperations([op], privateKey) - .then((result) => { - resolve(result); - }) - .catch((error) => { - reject(error); - }); - }); -}; - export const withdrawVesting = (data, activeKey) => { const privateKey = PrivateKey.fromString(activeKey); const op = [ diff --git a/src/providers/steem/steemConnect.js b/src/providers/steem/steemConnect.js index 33c500d91..e6d62e71a 100644 --- a/src/providers/steem/steemConnect.js +++ b/src/providers/steem/steemConnect.js @@ -127,12 +127,7 @@ export const unFollow = data => new Promise((resolve, reject) => { */ export const claimRewards = data => new Promise((resolve, reject) => { steemConnect - .claimRewardBalance( - data.account, - data.rewardSteem, - data.rewardSBD, - data.VESTS, - ) + .claimRewardBalance(data.account, data.rewardSteem, data.rewardSBD, data.VESTS) .then((result) => { resolve(result); }) diff --git a/src/screens/transfer/container/transferContainer.js b/src/screens/transfer/container/transferContainer.js index 2571bf344..9012d1e72 100644 --- a/src/screens/transfer/container/transferContainer.js +++ b/src/screens/transfer/container/transferContainer.js @@ -2,7 +2,13 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; // Services and Actions -import { lookupAccounts, transferToken } from '../../../providers/steem/dsteem'; +import { + lookupAccounts, + transferToken, + transferFromSavings, + transferToSavings, + transferToVesting, +} from '../../../providers/steem/dsteem'; import { toastNotification } from '../../../redux/actions/uiAction'; // Middleware @@ -39,6 +45,10 @@ class ExampleContainer extends Component { currentAccount, pinCode, navigation, dispatch, } = this.props; + const transferType = navigation.getParam('transferType', ''); + const fundType = navigation.getParam('fundType', ''); + let func; + const data = { from, destination, @@ -46,12 +56,39 @@ class ExampleContainer extends Component { memo, }; - transferToken(currentAccount, pinCode, data) + switch (transferType) { + case 'transferToken': + func = transferToken; + data.amount = `${data.amount} ${fundType}`; + break; + case 'transferToSaving': + func = transferToSavings; + data.amount = `${data.amount} ${fundType}`; + break; + case 'powerUp': + func = transferToVesting; + break; + case 'withdrawToSaving': + func = transferFromSavings; + data.requestId = new Date().getTime() >>> 0; + data.amount = `${data.amount} ${fundType}`; + break; + + default: + break; + } + + console.log('func :', func); + return func(currentAccount, pinCode, data) .then((res) => { + console.log('res :', res); dispatch(toastNotification('Successfull')); navigation.goBack(); }) - .catch(err => dispatch(toastNotification(err))); + .catch((err) => { + console.log('err :', err); + dispatch(toastNotification(err.message)); + }); }; _handleOnModalClose = () => { From 74dd14c7e356d1f08de5478dbf3752db14a563f6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:09:46 +0300 Subject: [PATCH 089/255] New translations en-US.json (Hindi) --- src/config/locales/hi-IN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/hi-IN.json b/src/config/locales/hi-IN.json index 736c9c170..ff3398a1c 100644 --- a/src/config/locales/hi-IN.json +++ b/src/config/locales/hi-IN.json @@ -23,6 +23,7 @@ "comingsoon": "अधिनायक पटल सुविधा जल्द आने वाली है!", "notification": "अधिसूचनाएं", "leaderboard": "अधिनायकपटल", + "epoint": "Points", "leaderboard_title": "प्रत्येक दिन का सर्वोच्च प्रयोगकर्ता", "recent": "ताजा", "yesterday": "बीता कल", @@ -30,6 +31,18 @@ "this_month": "इस महीने", "older_then": "एक महीना से अधिक पुराना" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "सन्देश सुविधा जल्द आ रही है!" }, From 25f4f126a2e61047baab6da583d002d53566f9d3 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:09:48 +0300 Subject: [PATCH 090/255] New translations en-US.json (Greek) --- src/config/locales/el-GR.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/el-GR.json b/src/config/locales/el-GR.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/el-GR.json +++ b/src/config/locales/el-GR.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From aa3546900d4be4b120747207c71a8b16d89a8d35 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:09:49 +0300 Subject: [PATCH 091/255] New translations en-US.json (Finnish) --- src/config/locales/fi-FI.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/fi-FI.json b/src/config/locales/fi-FI.json index cd2b58e7e..b44b27098 100644 --- a/src/config/locales/fi-FI.json +++ b/src/config/locales/fi-FI.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Viimeisimmät", "yesterday": "Eilen", @@ -30,6 +31,18 @@ "this_month": "Tässä kuussa", "older_then": "Kuukautta vanhempi" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From ace557d281db91cce8557e33e253d39a18292a14 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:09:51 +0300 Subject: [PATCH 092/255] New translations en-US.json (French) --- src/config/locales/fr-FR.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/fr-FR.json b/src/config/locales/fr-FR.json index 63b1f785e..015ab5fff 100644 --- a/src/config/locales/fr-FR.json +++ b/src/config/locales/fr-FR.json @@ -23,6 +23,7 @@ "comingsoon": "La fonctionnalité Classement arrive bientôt !", "notification": "Notifications", "leaderboard": "Classement", + "epoint": "Points", "leaderboard_title": "Top des utilisateurs du jour", "recent": "Récent", "yesterday": "Hier", @@ -30,6 +31,18 @@ "this_month": "Ce mois", "older_then": "Vieux de plus de 1 mois" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "La fonctionnalité Messages arrive bientôt !" }, From 7940d49ba8d91a3778b6d27a0514a091ff02d70c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:09:53 +0300 Subject: [PATCH 093/255] New translations en-US.json (Galician) --- src/config/locales/gl-ES.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/gl-ES.json b/src/config/locales/gl-ES.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/gl-ES.json +++ b/src/config/locales/gl-ES.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 43f12361831aba61d47b674986abd40ef79b39db Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:09:54 +0300 Subject: [PATCH 094/255] New translations en-US.json (Georgian) --- src/config/locales/ka-GE.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ka-GE.json b/src/config/locales/ka-GE.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/ka-GE.json +++ b/src/config/locales/ka-GE.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 0c3e0b7cd3c02c73323ce59cc9e70cc477d8556e Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:09:56 +0300 Subject: [PATCH 095/255] New translations en-US.json (German) --- src/config/locales/de-DE.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/de-DE.json b/src/config/locales/de-DE.json index 34890463f..45a818e1e 100644 --- a/src/config/locales/de-DE.json +++ b/src/config/locales/de-DE.json @@ -23,6 +23,7 @@ "comingsoon": "Ranglisten-Feature kommt bald!", "notification": "Benachrichtigungen", "leaderboard": "Rangliste", + "epoint": "Points", "leaderboard_title": "Tägliche Top-User", "recent": "Vor kurzem", "yesterday": "Gestern", @@ -30,6 +31,18 @@ "this_month": "Diesen Monat", "older_then": "Älter als ein Monat" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Nachrichten-Feature ist bald verfügbar!" }, From 5f8a40ec9f72a80b11c1d9ef92c7c0447992c3f9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:09:58 +0300 Subject: [PATCH 096/255] New translations en-US.json (Gothic) --- src/config/locales/got-DE.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/got-DE.json b/src/config/locales/got-DE.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/got-DE.json +++ b/src/config/locales/got-DE.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From c2b642beac7d8779d9f621d82a48fc064db4f7ec Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:00 +0300 Subject: [PATCH 097/255] New translations en-US.json (Hebrew) --- src/config/locales/he-IL.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/he-IL.json b/src/config/locales/he-IL.json index 0b7b788ce..57341297c 100644 --- a/src/config/locales/he-IL.json +++ b/src/config/locales/he-IL.json @@ -23,6 +23,7 @@ "comingsoon": "מאפיין לוח התוצאות יוצא להשקה בקרוב!", "notification": "התראות", "leaderboard": "לוח תוצאות", + "epoint": "Points", "leaderboard_title": "המשתמשים המובילים היום", "recent": "לאחרונה", "yesterday": "אתמול", @@ -30,6 +31,18 @@ "this_month": "החודש הזה", "older_then": "ישן יותר מחודש" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "אפשרות ההודעות יוצאת בקרוב!" }, From d506d55483576db4576b6f7e73162bbfc2d4a792 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:03 +0300 Subject: [PATCH 098/255] New translations en-US.json (Estonian) --- src/config/locales/et-EE.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/et-EE.json b/src/config/locales/et-EE.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/et-EE.json +++ b/src/config/locales/et-EE.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 4ec0a0278f38c1d66da7448468106ad75c617bc6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:05 +0300 Subject: [PATCH 099/255] New translations en-US.json (Hungarian) --- src/config/locales/hu-HU.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/hu-HU.json b/src/config/locales/hu-HU.json index 05c3f158b..6827568db 100644 --- a/src/config/locales/hu-HU.json +++ b/src/config/locales/hu-HU.json @@ -23,6 +23,7 @@ "comingsoon": "Ranglista funkció hamarosan érkezik!", "notification": "Értesítések", "leaderboard": "Ranglista", + "epoint": "Points", "leaderboard_title": "Napi Top Felhasználók", "recent": "Friss", "yesterday": "Tegnap", @@ -30,6 +31,18 @@ "this_month": "Ebben a hónapban", "older_then": "Egy Hónapnál Régebbi" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Üzenetek funkció hamarosan érkezik!" }, From 62a1a26c11799510616c2a02506218e539ae2419 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:06 +0300 Subject: [PATCH 100/255] New translations en-US.json (Icelandic) --- src/config/locales/is-IS.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/is-IS.json b/src/config/locales/is-IS.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/is-IS.json +++ b/src/config/locales/is-IS.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From bb965a71fe1d1c6cb2c72f166012c325ca5c0d46 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:08 +0300 Subject: [PATCH 101/255] New translations en-US.json (Indonesian) --- src/config/locales/id-ID.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/id-ID.json b/src/config/locales/id-ID.json index 4fb723b0d..a09d04651 100644 --- a/src/config/locales/id-ID.json +++ b/src/config/locales/id-ID.json @@ -23,6 +23,7 @@ "comingsoon": "Fungsi papan peringkat akan segera hadir!", "notification": "Pemberitahuan", "leaderboard": "Papan Peringkat", + "epoint": "Points", "leaderboard_title": "Pengguna harian paling atas", "recent": "Baru digunakan", "yesterday": "Kemarin", @@ -30,6 +31,18 @@ "this_month": "Bulan ini", "older_then": "Lebih Lama Dari Sebulan" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Fungsi pesan akan segera hadir!" }, From 0d835c86925a0bc7afbb5cc26fe025df91158b8c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:10 +0300 Subject: [PATCH 102/255] New translations en-US.json (Irish) --- src/config/locales/ga-IE.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ga-IE.json b/src/config/locales/ga-IE.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/ga-IE.json +++ b/src/config/locales/ga-IE.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 2949812caa4c0b20223ddabffd7bd693b81d61ea Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:12 +0300 Subject: [PATCH 103/255] New translations en-US.json (Italian) --- src/config/locales/it-IT.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/it-IT.json b/src/config/locales/it-IT.json index 129216c36..2e0b1b023 100644 --- a/src/config/locales/it-IT.json +++ b/src/config/locales/it-IT.json @@ -23,6 +23,7 @@ "comingsoon": "La feature classifica arriverà presto!", "notification": "Notifiche", "leaderboard": "Classifica", + "epoint": "Points", "leaderboard_title": "Top Utenti Giornalieri", "recent": "Recenti", "yesterday": "Ieri", @@ -30,6 +31,18 @@ "this_month": "Questo Mese", "older_then": "Più Di Un Mese Fa" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "La feature per i messaggi sta per arrivare!" }, From ff3ee432531bb3268a196a062a5a7fad590b0999 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:14 +0300 Subject: [PATCH 104/255] New translations en-US.json (Japanese) --- src/config/locales/ja-JP.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ja-JP.json b/src/config/locales/ja-JP.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/ja-JP.json +++ b/src/config/locales/ja-JP.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 3e58362b1100c475412a37079cb81f89346d4af5 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:15 +0300 Subject: [PATCH 105/255] New translations en-US.json (Kashmiri) --- src/config/locales/ks-IN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ks-IN.json b/src/config/locales/ks-IN.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/ks-IN.json +++ b/src/config/locales/ks-IN.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 3d507a2568d2b7777ea1d6bb200e42a3c1d26e95 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:17 +0300 Subject: [PATCH 106/255] New translations en-US.json (Filipino) --- src/config/locales/fil-PH.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/fil-PH.json b/src/config/locales/fil-PH.json index 68030f300..e10aa5cd5 100644 --- a/src/config/locales/fil-PH.json +++ b/src/config/locales/fil-PH.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 83f0f0d735bf5e6c3e8dde63302d0f90ae2ced9a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:19 +0300 Subject: [PATCH 107/255] New translations en-US.json (Kazakh) --- src/config/locales/kk-KZ.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/kk-KZ.json b/src/config/locales/kk-KZ.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/kk-KZ.json +++ b/src/config/locales/kk-KZ.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From fdd82100849a30240b88b4e9b15be832eb630eac Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:20 +0300 Subject: [PATCH 108/255] New translations en-US.json (Esperanto) --- src/config/locales/eo-UY.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/eo-UY.json b/src/config/locales/eo-UY.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/eo-UY.json +++ b/src/config/locales/eo-UY.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 0b41c1e9714f5876a3a1c85c2909f04f069aca7c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:22 +0300 Subject: [PATCH 109/255] New translations en-US.json (Bosnian) --- src/config/locales/bs-BA.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/bs-BA.json b/src/config/locales/bs-BA.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/bs-BA.json +++ b/src/config/locales/bs-BA.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 45e4bdfcf42b704b1be468a4248b6f9cdfe1331e Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:24 +0300 Subject: [PATCH 110/255] New translations en-US.json (Dutch) --- src/config/locales/nl-NL.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/nl-NL.json b/src/config/locales/nl-NL.json index 1a283dfc0..9a21aa69c 100644 --- a/src/config/locales/nl-NL.json +++ b/src/config/locales/nl-NL.json @@ -23,6 +23,7 @@ "comingsoon": "Scorebord komt binnenkort!", "notification": "Notificaties", "leaderboard": "Scorebord", + "epoint": "Points", "leaderboard_title": "Dagelijkse Topgebruiker", "recent": "Recent(e)", "yesterday": "Gisteren", @@ -30,6 +31,18 @@ "this_month": "Deze maand", "older_then": "Ouder dan een maand" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Berichtfunctie komt binnenkort!" }, From 1653143e82b3dd596ea20bb3e4215a5eb0300fc8 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:25 +0300 Subject: [PATCH 111/255] New translations en-US.json (Azerbaijani) --- src/config/locales/az-AZ.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/az-AZ.json b/src/config/locales/az-AZ.json index be6ff1c80..5e56cc9bd 100644 --- a/src/config/locales/az-AZ.json +++ b/src/config/locales/az-AZ.json @@ -23,6 +23,7 @@ "comingsoon": "Liderlər Cədvəli tezliklə gəlir!", "notification": "Bildirişlər", "leaderboard": "Liderlər cədvəli", + "epoint": "Points", "leaderboard_title": "Günlük Liderlər", "recent": "Təzəlikcə", "yesterday": "Dünən", @@ -30,6 +31,18 @@ "this_month": "Bu Ay", "older_then": "Bir Aydan Köhnə" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Mesajlar tezliklə gəlir!" }, From bedae170b38c594a3aea2654e7da3a43b9e48a70 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:27 +0300 Subject: [PATCH 112/255] New translations en-US.json (Albanian) --- src/config/locales/sq-AL.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/sq-AL.json b/src/config/locales/sq-AL.json index b12ecc58d..f0204f90a 100644 --- a/src/config/locales/sq-AL.json +++ b/src/config/locales/sq-AL.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 09f0bfe74a4f7e740fa1fe763ed48e54d8654d39 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:29 +0300 Subject: [PATCH 113/255] New translations en-US.json (Arabic) --- src/config/locales/ar-SA.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ar-SA.json b/src/config/locales/ar-SA.json index 05a7b196d..5dae78ae3 100644 --- a/src/config/locales/ar-SA.json +++ b/src/config/locales/ar-SA.json @@ -23,6 +23,7 @@ "comingsoon": "ميزة المتصدرين تأتي قريباً!", "notification": "الإشعارات", "leaderboard": "المتصدرين", + "epoint": "Points", "leaderboard_title": "أفضل مستخدم يومي", "recent": "الأخيرة", "yesterday": "يوم أمس", @@ -30,6 +31,18 @@ "this_month": "هذا الشهر", "older_then": "أقدم من شهر" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "ميزة الرسائل سوف تأتي قريباً!" }, From 8a125111c8b6d8bee3e96845f71c27c0eb8cff54 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:30 +0300 Subject: [PATCH 114/255] New translations en-US.json (Armenian) --- src/config/locales/hy-AM.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/hy-AM.json b/src/config/locales/hy-AM.json index b12ecc58d..f0204f90a 100644 --- a/src/config/locales/hy-AM.json +++ b/src/config/locales/hy-AM.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 0aa1055129e43c0575b8ee9e9380048e901e1157 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:32 +0300 Subject: [PATCH 115/255] New translations en-US.json (Bengali) --- src/config/locales/bn-BD.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/bn-BD.json b/src/config/locales/bn-BD.json index 6a662f1aa..c0937af0f 100644 --- a/src/config/locales/bn-BD.json +++ b/src/config/locales/bn-BD.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 292996a7dbbbc370f362fa47454cc56f08bb2d7f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:34 +0300 Subject: [PATCH 116/255] New translations en-US.json (Assamese) --- src/config/locales/as-IN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/as-IN.json b/src/config/locales/as-IN.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/as-IN.json +++ b/src/config/locales/as-IN.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From c52b109f89de97a62cabfc54c99859516855ea75 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:36 +0300 Subject: [PATCH 117/255] New translations en-US.json (Bulgarian) --- src/config/locales/bg-BG.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/bg-BG.json b/src/config/locales/bg-BG.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/bg-BG.json +++ b/src/config/locales/bg-BG.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From fb17d2ea1518bee4114e031df9a65bbe49f309b9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:37 +0300 Subject: [PATCH 118/255] New translations en-US.json (Catalan) --- src/config/locales/ca-ES.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ca-ES.json b/src/config/locales/ca-ES.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/ca-ES.json +++ b/src/config/locales/ca-ES.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 2c89852a0005c8bc162e365d448476a1abfdbce8 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:40 +0300 Subject: [PATCH 119/255] New translations en-US.json (Cebuano) --- src/config/locales/ceb-PH.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ceb-PH.json b/src/config/locales/ceb-PH.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/ceb-PH.json +++ b/src/config/locales/ceb-PH.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From ad887486c37d11b81b0cbb3b2a95405b80880ce2 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:42 +0300 Subject: [PATCH 120/255] New translations en-US.json (Chinese Simplified) --- src/config/locales/zh-CN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/zh-CN.json b/src/config/locales/zh-CN.json index 6d2020f2a..9464c66a6 100644 --- a/src/config/locales/zh-CN.json +++ b/src/config/locales/zh-CN.json @@ -23,6 +23,7 @@ "comingsoon": "即将推出排行榜!", "notification": "通知", "leaderboard": "排行榜", + "epoint": "Points", "leaderboard_title": "每日最高排名用户", "recent": "最近", "yesterday": "昨天", @@ -30,6 +31,18 @@ "this_month": "本月", "older_then": "一个月前" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "即将推出消息功能!" }, From 2c33e2db6398795801ed52290f5864baac2576be Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:46 +0300 Subject: [PATCH 121/255] New translations en-US.json (Chinese Traditional) --- src/config/locales/zh-TW.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/zh-TW.json b/src/config/locales/zh-TW.json index 66c2e3aef..3142b3559 100644 --- a/src/config/locales/zh-TW.json +++ b/src/config/locales/zh-TW.json @@ -23,6 +23,7 @@ "comingsoon": "即將推出排行榜功能!", "notification": "通知", "leaderboard": "排行榜", + "epoint": "Points", "leaderboard_title": "每日最高排名用戶", "recent": "最新", "yesterday": "昨天", @@ -30,6 +31,18 @@ "this_month": "本月", "older_then": "一個月前" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "即將推出消息功能!" }, From 1a1423a001b7a38a989895c8bea703c10b72fc5b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:47 +0300 Subject: [PATCH 122/255] New translations en-US.json (Croatian) --- src/config/locales/hr-HR.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/hr-HR.json b/src/config/locales/hr-HR.json index 538c7f9be..b6cf975b7 100644 --- a/src/config/locales/hr-HR.json +++ b/src/config/locales/hr-HR.json @@ -23,6 +23,7 @@ "comingsoon": "Rang lista dolazi uskoro!", "notification": "Obavijesti", "leaderboard": "Rang lista", + "epoint": "Points", "leaderboard_title": "Dnevni top korisnik", "recent": "Nedavno", "yesterday": "Jučer", @@ -30,6 +31,18 @@ "this_month": "Ovaj Mjesec", "older_then": "Starije od mjesec dana" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Značajka poruka dolazi uskoro!" }, From 7b98d8a0105b3d78e1d1bbc1d0a40ee808fe7a1f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:51 +0300 Subject: [PATCH 123/255] New translations en-US.json (Czech) --- src/config/locales/cs-CZ.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/cs-CZ.json b/src/config/locales/cs-CZ.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/cs-CZ.json +++ b/src/config/locales/cs-CZ.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From bb65bba0c96230729119e0cf02d9f5fadbce82fc Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:53 +0300 Subject: [PATCH 124/255] New translations en-US.json (Danish) --- src/config/locales/da-DK.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/da-DK.json b/src/config/locales/da-DK.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/da-DK.json +++ b/src/config/locales/da-DK.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From a4f3b0543b0085d4e40a1776c8f9b18e30de2750 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:56 +0300 Subject: [PATCH 125/255] New translations en-US.json (Thai) --- src/config/locales/th-TH.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/th-TH.json b/src/config/locales/th-TH.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/th-TH.json +++ b/src/config/locales/th-TH.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 8588a8ef5fba301715d4621b4bc67bc00bbced58 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:10:58 +0300 Subject: [PATCH 126/255] New translations en-US.json (Slovenian) --- src/config/locales/sl-SI.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/sl-SI.json b/src/config/locales/sl-SI.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/sl-SI.json +++ b/src/config/locales/sl-SI.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From eb114773317757b677534b81ac93a85e5b8ae752 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:00 +0300 Subject: [PATCH 127/255] New translations en-US.json (Spanish) --- src/config/locales/es-ES.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/es-ES.json b/src/config/locales/es-ES.json index 7d73a92fd..261d357f1 100644 --- a/src/config/locales/es-ES.json +++ b/src/config/locales/es-ES.json @@ -23,6 +23,7 @@ "comingsoon": "Pronto la tabla de posiciones!", "notification": "Notificaciones", "leaderboard": "Tabla de posiciones", + "epoint": "Points", "leaderboard_title": "Mejor usuario diario", "recent": "Reciente", "yesterday": "Ayer", @@ -30,6 +31,18 @@ "this_month": "Este mes", "older_then": "Más de un mes" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Pronto mensajería instantánea!" }, From cc5102c901514bbf646c913da9c2ffdf44818d11 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:02 +0300 Subject: [PATCH 128/255] New translations en-US.json (Swahili) --- src/config/locales/sw-KE.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/sw-KE.json b/src/config/locales/sw-KE.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/sw-KE.json +++ b/src/config/locales/sw-KE.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 3b8d099694ee5d51498148bb975c3851d3c2a1d1 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:05 +0300 Subject: [PATCH 129/255] New translations en-US.json (Swedish) --- src/config/locales/sv-SE.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/sv-SE.json b/src/config/locales/sv-SE.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/sv-SE.json +++ b/src/config/locales/sv-SE.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 669f458ed4296b5ac81af021fa2b1e4d5f78dfea Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:07 +0300 Subject: [PATCH 130/255] New translations en-US.json (Tajik) --- src/config/locales/tg-TJ.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/tg-TJ.json b/src/config/locales/tg-TJ.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/tg-TJ.json +++ b/src/config/locales/tg-TJ.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 9f329dc214a620f163770212dd943a046cb4eaed Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:12 +0300 Subject: [PATCH 131/255] New translations en-US.json (Tamil) --- src/config/locales/ta-IN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ta-IN.json b/src/config/locales/ta-IN.json index 4751e120f..176c169e7 100644 --- a/src/config/locales/ta-IN.json +++ b/src/config/locales/ta-IN.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "This Week" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "விரைவில் வரும் செய்திகளை அம்சம்!" }, From 2924cce92c4752aad629a96de5d3cd103b0ac76a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:13 +0300 Subject: [PATCH 132/255] New translations en-US.json (Yoruba) --- src/config/locales/yo-NG.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/yo-NG.json b/src/config/locales/yo-NG.json index 45ae6ca96..642522494 100644 --- a/src/config/locales/yo-NG.json +++ b/src/config/locales/yo-NG.json @@ -23,6 +23,7 @@ "comingsoon": "Eto ifihan awon asiwaju n bo lona!", "notification": "Awon Akiyesi", "leaderboard": "Ate asiwaju", + "epoint": "Points", "leaderboard_title": "Olori ojumo", "recent": "Ai pe", "yesterday": "Ana", @@ -30,6 +31,18 @@ "this_month": "Osu yi", "older_then": "Ti koja osu kan" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Eto sise ateranse nbo lona!" }, From b01482cb3d344a58401aadfc380700fd5c7ef02d Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:15 +0300 Subject: [PATCH 133/255] New translations en-US.json (Tibetan) --- src/config/locales/bo-BT.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/bo-BT.json b/src/config/locales/bo-BT.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/bo-BT.json +++ b/src/config/locales/bo-BT.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 0e3a860146d8020701ecbb7bcb795da45cea18f6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:17 +0300 Subject: [PATCH 134/255] New translations en-US.json (Turkmen) --- src/config/locales/tk-TM.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/tk-TM.json b/src/config/locales/tk-TM.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/tk-TM.json +++ b/src/config/locales/tk-TM.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 75dc41af0a79ebc12ee841e286373a59342736c4 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:18 +0300 Subject: [PATCH 135/255] New translations en-US.json (Ukrainian) --- src/config/locales/uk-UA.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/uk-UA.json b/src/config/locales/uk-UA.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/uk-UA.json +++ b/src/config/locales/uk-UA.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 73b90ed4dc072876db40482d2cc37641db7ebb4d Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:22 +0300 Subject: [PATCH 136/255] New translations en-US.json (Urdu (India)) --- src/config/locales/ur-IN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ur-IN.json b/src/config/locales/ur-IN.json index ea08cfecb..d35e6a954 100644 --- a/src/config/locales/ur-IN.json +++ b/src/config/locales/ur-IN.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 387f60443012ec273c99daaa65db7378b63f2f81 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:24 +0300 Subject: [PATCH 137/255] New translations en-US.json (Urdu (Pakistan)) --- src/config/locales/ur-PK.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ur-PK.json b/src/config/locales/ur-PK.json index ea08cfecb..d35e6a954 100644 --- a/src/config/locales/ur-PK.json +++ b/src/config/locales/ur-PK.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From d4378e8c0d3aeb814434d777b749c6548c55b9fb Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:25 +0300 Subject: [PATCH 138/255] New translations en-US.json (Uzbek) --- src/config/locales/uz-UZ.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/uz-UZ.json b/src/config/locales/uz-UZ.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/uz-UZ.json +++ b/src/config/locales/uz-UZ.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 97b49da7530ddba86027597e1999440a73349bf6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:27 +0300 Subject: [PATCH 139/255] New translations en-US.json (Vietnamese) --- src/config/locales/vi-VN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/vi-VN.json b/src/config/locales/vi-VN.json index 723557c66..cfbfbc398 100644 --- a/src/config/locales/vi-VN.json +++ b/src/config/locales/vi-VN.json @@ -23,6 +23,7 @@ "comingsoon": "Sắp có tính năng bảng xếp hạng!", "notification": "Thông báo", "leaderboard": "Bảng xếp hạng", + "epoint": "Points", "leaderboard_title": "Người dùng tiêu biểu hàng ngày", "recent": "Gần đây", "yesterday": "Hôm qua", @@ -30,6 +31,18 @@ "this_month": "Tháng này", "older_then": "Cách đây hơn 1 tháng" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Tính năng tin nhắn sẽ được cập nhật sớm!" }, From 465e27ff27bfe1806eaa140b4dc82b6b79e2a821 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:28 +0300 Subject: [PATCH 140/255] New translations en-US.json (Serbian (Latin)) --- src/config/locales/sr-CS.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/sr-CS.json b/src/config/locales/sr-CS.json index c17fcaf68..6c4413fd7 100644 --- a/src/config/locales/sr-CS.json +++ b/src/config/locales/sr-CS.json @@ -23,6 +23,7 @@ "comingsoon": "Rang lista dolazi uskoro!", "notification": "Obaveštenja", "leaderboard": "Rang lista", + "epoint": "Points", "leaderboard_title": "Najbolji korisnici na dnevnom nivou", "recent": "Nedavno", "yesterday": "Juče", @@ -30,6 +31,18 @@ "this_month": "Ovaj mesec", "older_then": "Stariji od mesec dana" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Slanje poruka će uskoro biti u funkciji!" }, From 83d4d193acaa40ba5b31941eec8a8260e815a313 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:32 +0300 Subject: [PATCH 141/255] New translations en-US.json (Slovak) --- src/config/locales/sk-SK.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/sk-SK.json b/src/config/locales/sk-SK.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/sk-SK.json +++ b/src/config/locales/sk-SK.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 0b4cff8691679145ee2b952bd38ad71cde0fdacf Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:33 +0300 Subject: [PATCH 142/255] New translations en-US.json (Nigerian Pidgin) --- src/config/locales/pcm-NG.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/pcm-NG.json b/src/config/locales/pcm-NG.json index f8fdbc44f..d967720ef 100644 --- a/src/config/locales/pcm-NG.json +++ b/src/config/locales/pcm-NG.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard dey come soon!", "notification": "Alerts", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "People Wey Dey Top Today", "recent": "Latest", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "E don pass one month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Option for messages go soon come!" }, From 509887a14811090f5d68f465b232de0eb731272d Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:35 +0300 Subject: [PATCH 143/255] New translations en-US.json (Sanskrit) --- src/config/locales/sa-IN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/sa-IN.json b/src/config/locales/sa-IN.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/sa-IN.json +++ b/src/config/locales/sa-IN.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From ba9b9123c9f6794e1d74e8e43e604f2f284089ae Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:37 +0300 Subject: [PATCH 144/255] New translations en-US.json (Malay) --- src/config/locales/ms-MY.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ms-MY.json b/src/config/locales/ms-MY.json index 3d85ceb73..56fafa62f 100644 --- a/src/config/locales/ms-MY.json +++ b/src/config/locales/ms-MY.json @@ -23,6 +23,7 @@ "comingsoon": "Papan Pendahulu akan datang tidak lama lagi!", "notification": "Pemberitahuan", "leaderboard": "Papan Pendahulu", + "epoint": "Points", "leaderboard_title": "Pengguna tertinggi harian", "recent": "Terbaru", "yesterday": "Semalam", @@ -30,6 +31,18 @@ "this_month": "Bulan Ini", "older_then": "Lebih dari sebulan" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Ciri-ciri mesej yang akan datang tidak lama lagi!" }, From a35ce85f7a5dc9df5908c028b3ac0d93845ffa0b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:39 +0300 Subject: [PATCH 145/255] New translations en-US.json (Turkish) --- src/config/locales/tr-TR.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/tr-TR.json b/src/config/locales/tr-TR.json index 57da9822e..19d747884 100644 --- a/src/config/locales/tr-TR.json +++ b/src/config/locales/tr-TR.json @@ -23,6 +23,7 @@ "comingsoon": "Liderler tablosu yakında burada!", "notification": "Bildirimler", "leaderboard": "Liderler Tablosu", + "epoint": "Points", "leaderboard_title": "Günlük lider kullanıcılar", "recent": "Geçen", "yesterday": "Dün", @@ -30,6 +31,18 @@ "this_month": "Bu Ay", "older_then": "Bir Aydan Daha Önce" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Mesajlar yakinda burada!" }, From afd34433c01fec9d9db87e825930d307d4fea3d2 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:40 +0300 Subject: [PATCH 146/255] New translations en-US.json (Korean) --- src/config/locales/ko-KR.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ko-KR.json b/src/config/locales/ko-KR.json index 49adde766..63e90dbb4 100644 --- a/src/config/locales/ko-KR.json +++ b/src/config/locales/ko-KR.json @@ -23,6 +23,7 @@ "comingsoon": "순위표 기능은 곧 출시될 예정입니다!", "notification": "알림", "leaderboard": "순위표", + "epoint": "Points", "leaderboard_title": "일별 상위 사용자", "recent": "최근", "yesterday": "어제", @@ -30,6 +31,18 @@ "this_month": "이번 달", "older_then": "1 달 이상" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "메시지 기능은 곧 출시될 예정입니다!" }, From 0d3b149eb1ab5718b6e92dc21f9b198410c23806 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:42 +0300 Subject: [PATCH 147/255] New translations en-US.json (Kurdish) --- src/config/locales/ku-TR.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ku-TR.json b/src/config/locales/ku-TR.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/ku-TR.json +++ b/src/config/locales/ku-TR.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 6d92c162e76209c0d12589c17afe309fdf91c160 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:43 +0300 Subject: [PATCH 148/255] New translations en-US.json (Kyrgyz) --- src/config/locales/ky-KG.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ky-KG.json b/src/config/locales/ky-KG.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/ky-KG.json +++ b/src/config/locales/ky-KG.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From a790f3f9fe97e00e6106d59d31a18af649e9d06f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:45 +0300 Subject: [PATCH 149/255] New translations en-US.json (Latvian) --- src/config/locales/lv-LV.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/lv-LV.json b/src/config/locales/lv-LV.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/lv-LV.json +++ b/src/config/locales/lv-LV.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 826e8b90af7c704f0c0351d768ab74a4a2b745da Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:46 +0300 Subject: [PATCH 150/255] New translations en-US.json (Lithuanian) --- src/config/locales/lt-LT.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/lt-LT.json b/src/config/locales/lt-LT.json index 868578cac..997e30b8c 100644 --- a/src/config/locales/lt-LT.json +++ b/src/config/locales/lt-LT.json @@ -23,6 +23,7 @@ "comingsoon": "Lyderių lentelė jau greitai!", "notification": "Pranešimai", "leaderboard": "Lyderiai", + "epoint": "Points", "leaderboard_title": "Dienos Top Vartotojas", "recent": "Naujausi", "yesterday": "Vakar", @@ -30,6 +31,18 @@ "this_month": "Šį mėnesį", "older_then": "Senesni nei vieno mėnesio" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Žinučių funkcija jau greitai!" }, From bc79008ffc8df55c1631ec22fb66d77c43dd9a57 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:48 +0300 Subject: [PATCH 151/255] New translations en-US.json (Macedonian) --- src/config/locales/mk-MK.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/mk-MK.json b/src/config/locales/mk-MK.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/mk-MK.json +++ b/src/config/locales/mk-MK.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 153dc6f9824c407f6903d944dab884140c48f058 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:50 +0300 Subject: [PATCH 152/255] New translations en-US.json (Mongolian) --- src/config/locales/mn-MN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/mn-MN.json b/src/config/locales/mn-MN.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/mn-MN.json +++ b/src/config/locales/mn-MN.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 962e8baf1fb55ae65f72b81b2f3d24fa4a2a9cc1 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:51 +0300 Subject: [PATCH 153/255] New translations en-US.json (Russian) --- src/config/locales/ru-RU.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ru-RU.json b/src/config/locales/ru-RU.json index 783d616fd..09c0af204 100644 --- a/src/config/locales/ru-RU.json +++ b/src/config/locales/ru-RU.json @@ -23,6 +23,7 @@ "comingsoon": "Доска Лидерства будет здесь!", "notification": "Уведомления", "leaderboard": "Лидеры", + "epoint": "Points", "leaderboard_title": "Доска Лидерства", "recent": "Недавно", "yesterday": "Вчера", @@ -30,6 +31,18 @@ "this_month": "В этом месяце", "older_then": "Давно" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Здесь будут сообщения!" }, From f882159e73b291670a95ad5bde54031b89ee0aa7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:53 +0300 Subject: [PATCH 154/255] New translations en-US.json (Nepali) --- src/config/locales/ne-NP.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ne-NP.json b/src/config/locales/ne-NP.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/ne-NP.json +++ b/src/config/locales/ne-NP.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 28edda9a7098457b4b328ac57961b4a85c57bb51 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:55 +0300 Subject: [PATCH 155/255] New translations en-US.json (Norwegian) --- src/config/locales/no-NO.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/no-NO.json b/src/config/locales/no-NO.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/no-NO.json +++ b/src/config/locales/no-NO.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 0933769630bd531c58ddd0ea5b175f0830bfcf08 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:57 +0300 Subject: [PATCH 156/255] New translations en-US.json (Persian) --- src/config/locales/fa-IR.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/fa-IR.json b/src/config/locales/fa-IR.json index b18aefb66..b45a3b55c 100644 --- a/src/config/locales/fa-IR.json +++ b/src/config/locales/fa-IR.json @@ -23,6 +23,7 @@ "comingsoon": "جدول رده بندی به زودی ارائه خواهد شد!", "notification": "اطلاعیه ها", "leaderboard": "جدول رده بندی", + "epoint": "Points", "leaderboard_title": "بهترین کاربران روز", "recent": "اخیر", "yesterday": "دیروز", @@ -30,6 +31,18 @@ "this_month": "این ماه", "older_then": "قدیمی تر از 1 ماه" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "قابلیت ارسال پیام به زودی ارائه خواهد شد!" }, From dae8b204ebce26fad18ff1c8796fef8b8a8fb8a6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:11:58 +0300 Subject: [PATCH 157/255] New translations en-US.json (Polish) --- src/config/locales/pl-PL.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/pl-PL.json b/src/config/locales/pl-PL.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/pl-PL.json +++ b/src/config/locales/pl-PL.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 292505d379ea0c79e9a44418fea758bd69c446b7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:12:00 +0300 Subject: [PATCH 158/255] New translations en-US.json (Portuguese) --- src/config/locales/pt-PT.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/pt-PT.json b/src/config/locales/pt-PT.json index cdc4bc7cf..99600efc2 100644 --- a/src/config/locales/pt-PT.json +++ b/src/config/locales/pt-PT.json @@ -23,6 +23,7 @@ "comingsoon": "Quadro de Líderes em Breve!", "notification": "Notificações", "leaderboard": "Quadro de Liderança", + "epoint": "Points", "leaderboard_title": "Usuário do Topo Hoje", "recent": "Recente", "yesterday": "Ontem", @@ -30,6 +31,18 @@ "this_month": "Este Mês", "older_then": "Com mais de um mês" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Recurso de mensagens chega em breve!" }, From 7cd54486f08ee6b3e377dd91e1c8996dbffb89c8 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:12:03 +0300 Subject: [PATCH 159/255] New translations en-US.json (Punjabi) --- src/config/locales/pa-IN.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/pa-IN.json b/src/config/locales/pa-IN.json index 840bd4849..cde55526f 100644 --- a/src/config/locales/pa-IN.json +++ b/src/config/locales/pa-IN.json @@ -23,6 +23,7 @@ "comingsoon": "Leaderboard feature is coming soon!", "notification": "Notifications", "leaderboard": "Leaderboard", + "epoint": "Points", "leaderboard_title": "Daily Top User", "recent": "Recent", "yesterday": "Yesterday", @@ -30,6 +31,18 @@ "this_month": "This Month", "older_then": "Older Than A Month" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Messages feature is coming soon!" }, From 29b7e9367fedf53078d34516a9a0f5d74b21a674 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:12:05 +0300 Subject: [PATCH 160/255] New translations en-US.json (Romanian) --- src/config/locales/ro-RO.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ro-RO.json b/src/config/locales/ro-RO.json index 2a91518c4..9876aeb6b 100644 --- a/src/config/locales/ro-RO.json +++ b/src/config/locales/ro-RO.json @@ -23,6 +23,7 @@ "comingsoon": "Clasamentul va fi disponibil în curând!", "notification": "Notificări", "leaderboard": "Clasament", + "epoint": "Points", "leaderboard_title": "Utilizatori de Top Zilnic", "recent": "Recent", "yesterday": "Ieri", @@ -30,6 +31,18 @@ "this_month": "Luna Aceasta", "older_then": "Mai vechi de o lună" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Funcția mesaje va fi disponibilă in curând!" }, From 7de81523fd647a456334435d8371da83b275b857 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:12:08 +0300 Subject: [PATCH 161/255] New translations en-US.json (Acehnese) --- src/config/locales/ac-ace.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/config/locales/ac-ace.json b/src/config/locales/ac-ace.json index cff5d3938..bb5a28912 100644 --- a/src/config/locales/ac-ace.json +++ b/src/config/locales/ac-ace.json @@ -23,6 +23,7 @@ "comingsoon": "Papeun ranking akan seugeura lheuh!", "notification": "Bithé", "leaderboard": "Papeun Rangking", + "epoint": "Points", "leaderboard_title": "Ureung Palèng Lè pakek", "recent": "Ataban nyoë", "yesterday": "Baroë", @@ -30,6 +31,18 @@ "this_month": "Buleuën Nyoë", "older_then": "Leubéh Lam Sibulëun" }, + "points": { + "post": "Post", + "comment": "Comment", + "checkin": "Checki-in", + "post_title": "Points for post", + "comment_title": "Points for comment", + "vote_title": "Points for vote", + "reblog_title": "Points for reblog", + "login_title": "Points for login", + "checkin_title": "Points for usage", + "checkin_extra_title": "Usage bonus" + }, "messages": { "comingsoon": "Fitur peusan seugeura lheuh!" }, From b5c468fc9276007b3e1e90f196c96eb114bc0cfb Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:39:09 +0300 Subject: [PATCH 162/255] New translations en-US.json (Arabic) --- src/config/locales/ar-SA.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/config/locales/ar-SA.json b/src/config/locales/ar-SA.json index 5dae78ae3..b3dad73d3 100644 --- a/src/config/locales/ar-SA.json +++ b/src/config/locales/ar-SA.json @@ -23,7 +23,7 @@ "comingsoon": "ميزة المتصدرين تأتي قريباً!", "notification": "الإشعارات", "leaderboard": "المتصدرين", - "epoint": "Points", + "epoint": "نقاط", "leaderboard_title": "أفضل مستخدم يومي", "recent": "الأخيرة", "yesterday": "يوم أمس", @@ -32,16 +32,16 @@ "older_then": "أقدم من شهر" }, "points": { - "post": "Post", - "comment": "Comment", + "post": "منشور", + "comment": "تعليق", "checkin": "Checki-in", - "post_title": "Points for post", - "comment_title": "Points for comment", - "vote_title": "Points for vote", - "reblog_title": "Points for reblog", - "login_title": "Points for login", - "checkin_title": "Points for usage", - "checkin_extra_title": "Usage bonus" + "post_title": "نقاط للمنشور", + "comment_title": "نقاط للتعليق", + "vote_title": "نقاط للتصويت", + "reblog_title": "نقاط لإعادة النشر", + "login_title": "نقاط لتسجيل الدخول", + "checkin_title": "نقاط للاستخدام", + "checkin_extra_title": "مكافأة الاستخدام" }, "messages": { "comingsoon": "ميزة الرسائل سوف تأتي قريباً!" From 0fc3530c6128e6640e5d43b6feb3fb0d0da1b07f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 13:39:10 +0300 Subject: [PATCH 163/255] New translations en-US.json (Hungarian) --- src/config/locales/hu-HU.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/config/locales/hu-HU.json b/src/config/locales/hu-HU.json index 6827568db..2fcfd546b 100644 --- a/src/config/locales/hu-HU.json +++ b/src/config/locales/hu-HU.json @@ -23,7 +23,7 @@ "comingsoon": "Ranglista funkció hamarosan érkezik!", "notification": "Értesítések", "leaderboard": "Ranglista", - "epoint": "Points", + "epoint": "Pontok", "leaderboard_title": "Napi Top Felhasználók", "recent": "Friss", "yesterday": "Tegnap", @@ -32,16 +32,16 @@ "older_then": "Egy Hónapnál Régebbi" }, "points": { - "post": "Post", - "comment": "Comment", + "post": "Bejegyzés", + "comment": "Hozzászólás", "checkin": "Checki-in", - "post_title": "Points for post", - "comment_title": "Points for comment", + "post_title": "Bejegyzés pontok", + "comment_title": "Hozzászólás pontok", "vote_title": "Points for vote", "reblog_title": "Points for reblog", "login_title": "Points for login", "checkin_title": "Points for usage", - "checkin_extra_title": "Usage bonus" + "checkin_extra_title": "Használati bónusz" }, "messages": { "comingsoon": "Üzenetek funkció hamarosan érkezik!" From e649d9801d7a059a0bc424231f4346c8da11dcb3 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 14:27:14 +0300 Subject: [PATCH 164/255] New translations en-US.json (Malay) --- src/config/locales/ms-MY.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/config/locales/ms-MY.json b/src/config/locales/ms-MY.json index 56fafa62f..749ab0cf8 100644 --- a/src/config/locales/ms-MY.json +++ b/src/config/locales/ms-MY.json @@ -23,7 +23,7 @@ "comingsoon": "Papan Pendahulu akan datang tidak lama lagi!", "notification": "Pemberitahuan", "leaderboard": "Papan Pendahulu", - "epoint": "Points", + "epoint": "Mata ganjaran", "leaderboard_title": "Pengguna tertinggi harian", "recent": "Terbaru", "yesterday": "Semalam", @@ -32,12 +32,12 @@ "older_then": "Lebih dari sebulan" }, "points": { - "post": "Post", - "comment": "Comment", - "checkin": "Checki-in", - "post_title": "Points for post", - "comment_title": "Points for comment", - "vote_title": "Points for vote", + "post": "Hantar", + "comment": "Komen", + "checkin": "Mata ganjaran -> dimasukkan", + "post_title": "Mata ganjaran -> post_title", + "comment_title": "Mata ganjaran -> comment_title", + "vote_title": "Mata ganjaran -> vote_title", "reblog_title": "Points for reblog", "login_title": "Points for login", "checkin_title": "Points for usage", From fde693e19f3850bf67a987d51adb9536f6d4ab6c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 14:37:27 +0300 Subject: [PATCH 165/255] New translations en-US.json (Malay) --- src/config/locales/ms-MY.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config/locales/ms-MY.json b/src/config/locales/ms-MY.json index 749ab0cf8..6f8113e70 100644 --- a/src/config/locales/ms-MY.json +++ b/src/config/locales/ms-MY.json @@ -38,10 +38,10 @@ "post_title": "Mata ganjaran -> post_title", "comment_title": "Mata ganjaran -> comment_title", "vote_title": "Mata ganjaran -> vote_title", - "reblog_title": "Points for reblog", - "login_title": "Points for login", - "checkin_title": "Points for usage", - "checkin_extra_title": "Usage bonus" + "reblog_title": "Mata ganjaran -> reblog_title", + "login_title": "Mata ganjaran log masuk", + "checkin_title": "Mata ganjaran kegunaan", + "checkin_extra_title": "Bonus kegunaan" }, "messages": { "comingsoon": "Ciri-ciri mesej yang akan datang tidak lama lagi!" From 25e5ac343467e7069e167a10d8a9e92f0e197278 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 15:28:19 +0300 Subject: [PATCH 166/255] New translations en-US.json (Hungarian) --- src/config/locales/hu-HU.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/locales/hu-HU.json b/src/config/locales/hu-HU.json index 2fcfd546b..4e574befa 100644 --- a/src/config/locales/hu-HU.json +++ b/src/config/locales/hu-HU.json @@ -38,9 +38,9 @@ "post_title": "Bejegyzés pontok", "comment_title": "Hozzászólás pontok", "vote_title": "Points for vote", - "reblog_title": "Points for reblog", - "login_title": "Points for login", - "checkin_title": "Points for usage", + "reblog_title": "Megosztási pontok", + "login_title": "Bejelentkezés pontok", + "checkin_title": "Használati pontok", "checkin_extra_title": "Használati bónusz" }, "messages": { From 6160dcfcb2aaf8ed090f5b31437c19d1ee4a2b25 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 15:43:27 +0300 Subject: [PATCH 167/255] New translations en-US.json (Hungarian) --- src/config/locales/hu-HU.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config/locales/hu-HU.json b/src/config/locales/hu-HU.json index 4e574befa..8a285ac76 100644 --- a/src/config/locales/hu-HU.json +++ b/src/config/locales/hu-HU.json @@ -37,7 +37,7 @@ "checkin": "Checki-in", "post_title": "Bejegyzés pontok", "comment_title": "Hozzászólás pontok", - "vote_title": "Points for vote", + "vote_title": "Szavazási pontok", "reblog_title": "Megosztási pontok", "login_title": "Bejelentkezés pontok", "checkin_title": "Használati pontok", @@ -163,10 +163,10 @@ "allRead": "Minden értesítés megjelölve olvasottként", "claim_reward_balance_ok": "Jutalom egyenleg átvéve", "fail": "Sikertelen!", - "move": "Move", - "move_question": "Are you sure to move to drafts?", + "move": "Áthelyezés", + "move_question": "Biztos, hogy áthelyezed a piszkozatokhoz?", "success_shared": "A bejegyzésed sikeresen megosztva", - "success_moved": "Moved to draft", + "success_moved": "Áthelyezve a vázlatokhoz", "permission_denied": "Engedély megtagadva", "permission_text": "Kérjük menj a telefon beállításokhoz és változtass az eSteem app engedélyezésein.", "success_rebloged": "Megosztva!", From 08ab1c8219d201a6c9b6d7527984974a77ace1f4 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 15:59:42 +0300 Subject: [PATCH 168/255] New translations en-US.json (Hungarian) --- src/config/locales/hu-HU.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/locales/hu-HU.json b/src/config/locales/hu-HU.json index 8a285ac76..043e4192c 100644 --- a/src/config/locales/hu-HU.json +++ b/src/config/locales/hu-HU.json @@ -97,7 +97,7 @@ "always_warn": "Mindig figyelmeztess" }, "feedback_success": "Email sikeresen megnyitva", - "feedback_fail": "Email client could not open" + "feedback_fail": "A levelezőprogram nem nyitható meg" }, "voters": { "voters_info": "Infó a szavazókról", @@ -246,6 +246,6 @@ "trending": "népszerű", "reputation": "reputáció", "votes": "szavazatok", - "age": "age" + "age": "időrend" } } From f03b2da9cd4f971f6d977d335c2c635801249af3 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 16:08:25 +0300 Subject: [PATCH 169/255] New translations en-US.json (Romanian) --- src/config/locales/ro-RO.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/config/locales/ro-RO.json b/src/config/locales/ro-RO.json index 9876aeb6b..c09b71de3 100644 --- a/src/config/locales/ro-RO.json +++ b/src/config/locales/ro-RO.json @@ -19,11 +19,11 @@ "unfollow": "a anulat urmărirea", "ignore": "te-a ignorat", "reblog": "a redistribuit postarea ta", - "transfer": "transfered steem", + "transfer": "steem transferat", "comingsoon": "Clasamentul va fi disponibil în curând!", "notification": "Notificări", "leaderboard": "Clasament", - "epoint": "Points", + "epoint": "Puncte", "leaderboard_title": "Utilizatori de Top Zilnic", "recent": "Recent", "yesterday": "Ieri", @@ -32,16 +32,16 @@ "older_then": "Mai vechi de o lună" }, "points": { - "post": "Post", - "comment": "Comment", + "post": "Postare", + "comment": "Comentariu", "checkin": "Checki-in", - "post_title": "Points for post", - "comment_title": "Points for comment", - "vote_title": "Points for vote", + "post_title": "Puncte pentru postare", + "comment_title": "Puncte pentru comentariu", + "vote_title": "Puncte pentru vot", "reblog_title": "Points for reblog", "login_title": "Points for login", "checkin_title": "Points for usage", - "checkin_extra_title": "Usage bonus" + "checkin_extra_title": "Bonus de utilizare" }, "messages": { "comingsoon": "Funcția mesaje va fi disponibilă in curând!" @@ -79,7 +79,7 @@ "push_notification": "Notificări", "notification": { "follow": "Follow", - "vote": "Vote", + "vote": "Vot", "comment": "Comment", "mention": "Mention", "reblog": "Reblog", @@ -163,7 +163,7 @@ "allRead": "Marchează toate notificările ca citite", "claim_reward_balance_ok": "Sold de recompensă colectat", "fail": "Eșuat!", - "move": "Move", + "move": "Mută", "move_question": "Are you sure to move to drafts?", "success_shared": "Postarea ta a fost distribuită cu succes", "success_moved": "Moved to draft", From 2ae5afb4c2d781df56f1537951d9caf3f7963b5a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Tue, 23 Apr 2019 16:29:31 +0300 Subject: [PATCH 170/255] New translations en-US.json (Romanian) --- src/config/locales/ro-RO.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/config/locales/ro-RO.json b/src/config/locales/ro-RO.json index c09b71de3..ee19fc489 100644 --- a/src/config/locales/ro-RO.json +++ b/src/config/locales/ro-RO.json @@ -38,9 +38,9 @@ "post_title": "Puncte pentru postare", "comment_title": "Puncte pentru comentariu", "vote_title": "Puncte pentru vot", - "reblog_title": "Points for reblog", - "login_title": "Points for login", - "checkin_title": "Points for usage", + "reblog_title": "Puncte pentru reblog", + "login_title": "Puncte pentru autentificare", + "checkin_title": "Puncte pentru utilizare", "checkin_extra_title": "Bonus de utilizare" }, "messages": { @@ -71,32 +71,32 @@ }, "settings": { "settings": "Setări", - "general": "General", + "general": "Generale", "currency": "Monedă", "language": "Limbă", "server": "Server", "dark_theme": "Tema întunecată", "push_notification": "Notificări", "notification": { - "follow": "Follow", + "follow": "Urmăriri", "vote": "Vot", - "comment": "Comment", - "mention": "Mention", + "comment": "Comentarii", + "mention": "Menționări", "reblog": "Reblog", - "transfers": "Transfers" + "transfers": "Transferuri" }, "pincode": "Pincode", "reset": "Resetare", "nsfw_content": "Conținut NSFW", - "send_feedback": "Send Feedback", - "send": "Send", - "default_footer": "Default Footer", + "send_feedback": "Trimite Feedback", + "send": "Trimite", + "default_footer": "Subsol implicit", "nsfw": { "always_show": "Afisează întotdeauna", "always_hide": "Ascunde întotdeauna", "always_warn": "Avertizează întotdeauna" }, - "feedback_success": "Email successfully open", + "feedback_success": "E-mail deschis cu succes", "feedback_fail": "Email client could not open" }, "voters": { @@ -164,16 +164,16 @@ "claim_reward_balance_ok": "Sold de recompensă colectat", "fail": "Eșuat!", "move": "Mută", - "move_question": "Are you sure to move to drafts?", + "move_question": "Esti sigur că vrei să muți la schițe?", "success_shared": "Postarea ta a fost distribuită cu succes", - "success_moved": "Moved to draft", + "success_moved": "Mutat la schițe", "permission_denied": "Permisiune respinsă", "permission_text": "Te rugăm să mergi în setările telefonului și să schimbi permisiunile aplicației eSteem.", "success_rebloged": "Rebloged!", "already_rebloged": "Ai redistribuit postarea deja!", "warning": "Atenționare", "invalid_pincode": "Invalid pin code, please check and try again.", - "remove_alert": "Are you sure want to remove?", + "remove_alert": "Esti sigur că vrei să ștergi?", "clear_alert": "Ești sigur că vrei să ștergi?", "clear_user_alert": "Esti sigur că vrei să ștergi toate datele?", "clear": "Șterge", From 16a3c560121210463b3a8004a4b8fa3ac18549ae Mon Sep 17 00:00:00 2001 From: Mustafa Buyukcelebi Date: Wed, 24 Apr 2019 11:41:01 +0300 Subject: [PATCH 171/255] Working on transfer feature --- .../transaction/view/transactionView.js | 2 ++ .../container/walletDetailsContainer.js | 21 ++++++++++++------- .../walletDetails/view/walletDetailsView.js | 2 +- src/providers/steem/dsteem.js | 15 +++++++------ .../pinCode/container/pinCodeContainer.js | 13 ++++++------ .../transfer/container/transferContainer.js | 9 ++------ src/utils/wallet.js | 2 +- 7 files changed, 33 insertions(+), 31 deletions(-) diff --git a/src/components/transaction/view/transactionView.js b/src/components/transaction/view/transactionView.js index 1477b45ff..53e038946 100644 --- a/src/components/transaction/view/transactionView.js +++ b/src/components/transaction/view/transactionView.js @@ -52,6 +52,8 @@ class TransactionView extends PureComponent { {transactions && transactions.map((item, index) => { const transactionData = groomingTransactionData(item, steemPerMVests, formatNumber); + if (transactionData.length === 0) return null; + const value = transactionData.value.split(' '); return ( diff --git a/src/components/walletDetails/container/walletDetailsContainer.js b/src/components/walletDetails/container/walletDetailsContainer.js index aadf1b692..6e2b2286f 100644 --- a/src/components/walletDetails/container/walletDetailsContainer.js +++ b/src/components/walletDetails/container/walletDetailsContainer.js @@ -26,16 +26,21 @@ class WalletContainer extends PureComponent { // Component Life Cycle Functions // Component Functions - _navigate = () => { - const { dispatch, setPinCodeState, navigation } = this.props; + _navigate = (a,b) => { + const { dispatch, setPinCodeState } = this.props; - navigation.navigate(ROUTES.SCREENS.TRANSFER, { - transferType: 'transferToSaving', - fundType: 'STEEM', + // navigation.navigate(ROUTES.SCREENS.TRANSFER, { + // transferType: 'withdrawToSaving', + // fundType: 'STEEM', + // }); + + console.log('a,b :', a,b); + + setPinCodeState({ + navigateTo: ROUTES.SCREENS.TRANSFER, + navigateParams: { transferType: 'transferToken', fundType: 'STEEM' }, }); - - // setPinCodeState({ navigateTo: ROUTES.SCREENS.TRANSFER, navigateParams: {transferType: 'sbd'} }); - // dispatch(openPinCodeModal()); + dispatch(openPinCodeModal()); }; render() { diff --git a/src/components/walletDetails/view/walletDetailsView.js b/src/components/walletDetails/view/walletDetailsView.js index 41b2f63d1..5419be898 100644 --- a/src/components/walletDetails/view/walletDetailsView.js +++ b/src/components/walletDetails/view/walletDetailsView.js @@ -40,7 +40,7 @@ class WalletDetailsView extends PureComponent { isBoldText dropdown dropdownOptions={['Transfer']} - onDropdownSelect={test => navigate()} + onDropdownSelect={(a,b) => navigate(a,b)} /> { if (key) { const privateKey = PrivateKey.fromString(key); - const args = [ + + const args = [[ 'transfer_to_savings', { from: data.from, @@ -552,9 +553,7 @@ export const transferToSavings = (currentAccount, pin, data) => { amount: data.amount, memo: data.memo, }, - ]; - - console.log('args :', args); + ]]; return new Promise((resolve, reject) => { client.broadcast @@ -577,7 +576,7 @@ export const transferFromSavings = (currentAccount, pin, data) => { if (key) { const privateKey = PrivateKey.fromString(key); - const args = [ + const args = [[ 'transfer_from_savings', { from: data.from, @@ -586,7 +585,7 @@ export const transferFromSavings = (currentAccount, pin, data) => { memo: data.memo, request_id: data.requestId, }, - ]; + ]]; return new Promise((resolve, reject) => { client.broadcast @@ -609,14 +608,14 @@ export const transferToVesting = (currentAccount, pin, data) => { if (key) { const privateKey = PrivateKey.fromString(key); - const args = [ + const args = [[ 'transfer_to_vesting', { from: data.from, to: data.destination, amount: data.amount, }, - ]; + ]]; return new Promise((resolve, reject) => { client.broadcast diff --git a/src/screens/pinCode/container/pinCodeContainer.js b/src/screens/pinCode/container/pinCodeContainer.js index e8275a3fb..54455662e 100644 --- a/src/screens/pinCode/container/pinCodeContainer.js +++ b/src/screens/pinCode/container/pinCodeContainer.js @@ -80,7 +80,7 @@ class PinCodeContainer extends Component { _resetPinCode = pin => new Promise((resolve, reject) => { const { - currentAccount, dispatch, accessToken, navigateTo, navigation, intl, + currentAccount, dispatch, accessToken, navigateTo, navigateParams, navigation, intl, } = this.props; const { isOldPinVerified, oldPinCode } = this.state; @@ -102,7 +102,7 @@ class PinCodeContainer extends Component { dispatch(closePinCodeModal()); if (navigateTo) { - navigation.navigate(navigateTo); + navigation.navigate(navigateTo, navigateParams); } resolve(); }); @@ -135,7 +135,7 @@ class PinCodeContainer extends Component { _setFirstPinCode = pin => new Promise((resolve) => { const { - currentAccount, dispatch, accessToken, navigateTo, navigation, + currentAccount, dispatch, accessToken, navigateTo, navigateParams, navigation, } = this.props; const pinData = { @@ -155,7 +155,7 @@ class PinCodeContainer extends Component { this._savePinCode(pin); dispatch(closePinCodeModal()); if (navigateTo) { - navigation.navigate(navigateTo); + navigation.navigate(navigateTo, navigateParams); } resolve(); }); @@ -165,7 +165,7 @@ class PinCodeContainer extends Component { _verifyPinCode = pin => new Promise((resolve, reject) => { const { - currentAccount, dispatch, accessToken, navigateTo, navigation, intl, + currentAccount, dispatch, accessToken, navigateTo, navigateParams, navigation, intl, } = this.props; // If the user is exist, we are just checking to pin and navigating to home screen @@ -184,8 +184,9 @@ class PinCodeContainer extends Component { [_currentAccount.local] = realmData; dispatch(updateCurrentAccount({ ..._currentAccount })); dispatch(closePinCodeModal()); + console.log('navigateParams :', navigateParams); if (navigateTo) { - navigation.navigate(navigateTo); + navigation.navigate(navigateTo, navigateParams); } }) .catch((err) => { diff --git a/src/screens/transfer/container/transferContainer.js b/src/screens/transfer/container/transferContainer.js index 9012d1e72..17323e093 100644 --- a/src/screens/transfer/container/transferContainer.js +++ b/src/screens/transfer/container/transferContainer.js @@ -55,15 +55,14 @@ class ExampleContainer extends Component { amount, memo, }; + data.amount = `${data.amount} ${fundType}`; switch (transferType) { case 'transferToken': func = transferToken; - data.amount = `${data.amount} ${fundType}`; break; case 'transferToSaving': func = transferToSavings; - data.amount = `${data.amount} ${fundType}`; break; case 'powerUp': func = transferToVesting; @@ -71,22 +70,18 @@ class ExampleContainer extends Component { case 'withdrawToSaving': func = transferFromSavings; data.requestId = new Date().getTime() >>> 0; - data.amount = `${data.amount} ${fundType}`; break; default: break; } - console.log('func :', func); return func(currentAccount, pinCode, data) - .then((res) => { - console.log('res :', res); + .then(() => { dispatch(toastNotification('Successfull')); navigation.goBack(); }) .catch((err) => { - console.log('err :', err); dispatch(toastNotification(err.message)); }); }; diff --git a/src/utils/wallet.js b/src/utils/wallet.js index 47db62ee0..2cee327cd 100644 --- a/src/utils/wallet.js +++ b/src/utils/wallet.js @@ -95,7 +95,7 @@ export const groomingTransactionData = (transaction, steemPerMVests, formatNumbe result.icon = 'reorder'; break; default: - break; + return []; } return result; }; From 310d5f49e0de6a3330632a4c4dd50890ad435d97 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Wed, 24 Apr 2019 12:35:41 +0300 Subject: [PATCH 172/255] New translations en-US.json (Romanian) --- src/config/locales/ro-RO.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/locales/ro-RO.json b/src/config/locales/ro-RO.json index ee19fc489..776a0b247 100644 --- a/src/config/locales/ro-RO.json +++ b/src/config/locales/ro-RO.json @@ -97,7 +97,7 @@ "always_warn": "Avertizează întotdeauna" }, "feedback_success": "E-mail deschis cu succes", - "feedback_fail": "Email client could not open" + "feedback_fail": "Email-ul nu a putut fi accesat" }, "voters": { "voters_info": "Detalii votanți", From c4048265935a37bd5342ac18265d76a2f489de52 Mon Sep 17 00:00:00 2001 From: Mustafa Buyukcelebi Date: Wed, 24 Apr 2019 15:30:31 +0300 Subject: [PATCH 173/255] Clean to android bundle file --- .../app/src/main/assets/index.android.bundle | 2760 ++++++++--------- ...gationstack_dist_views_assets_backicon.png | Bin 0 -> 134 bytes ...odules_reactnativedatepicker_date_icon.png | Bin 0 -> 1133 bytes ...tnativehtmlrenderer_src_assets_default.png | Bin 0 -> 10023 bytes ...actnativehtmlrenderer_src_assets_error.png | Bin 0 -> 5793 bytes ...gationstack_dist_views_assets_backicon.png | Bin 0 -> 100 bytes ...onstack_dist_views_assets_backiconmask.png | Bin 0 -> 659 bytes .../src_assets_avatar_default.png | Bin 0 -> 585 bytes .../src_assets_dark_cover_image.png | Bin 0 -> 7964 bytes .../src_assets_default_cover_image.png | Bin 0 -> 9276 bytes .../res/drawable-mdpi/src_assets_esteem.png | Bin 0 -> 1171 bytes .../src_assets_esteem_logo_transparent.png | Bin 0 -> 1464 bytes .../drawable-mdpi/src_assets_keep_calm.png | Bin 0 -> 5998 bytes .../drawable-mdpi/src_assets_love_mascot.png | Bin 0 -> 49323 bytes .../res/drawable-mdpi/src_assets_no_image.png | Bin 0 -> 926 bytes .../res/drawable-mdpi/src_assets_no_post.png | Bin 0 -> 13045 bytes .../res/drawable-mdpi/src_assets_nsfw.png | Bin 0 -> 2953 bytes .../src_assets_side_menu_background.png | Bin 0 -> 1786 bytes .../src_assets_steem_connect.png | Bin 0 -> 1083 bytes ...gationstack_dist_views_assets_backicon.png | Bin 0 -> 134 bytes .../src_assets_avatar_default.png | Bin 0 -> 438 bytes .../src_assets_dark_cover_image.png | Bin 0 -> 4153 bytes .../src_assets_default_cover_image.png | Bin 0 -> 19559 bytes .../res/drawable-xhdpi/src_assets_esteem.png | Bin 0 -> 2691 bytes .../src_assets_esteem_logo_transparent.png | Bin 0 -> 2517 bytes .../drawable-xhdpi/src_assets_keep_calm.png | Bin 0 -> 14195 bytes .../drawable-xhdpi/src_assets_love_mascot.png | Bin 0 -> 174300 bytes .../drawable-xhdpi/src_assets_no_image.png | Bin 0 -> 2577 bytes .../res/drawable-xhdpi/src_assets_no_post.png | Bin 0 -> 39594 bytes .../src_assets_side_menu_background.png | Bin 0 -> 5293 bytes .../src_assets_steem_connect.png | Bin 0 -> 1137 bytes ...gationstack_dist_views_assets_backicon.png | Bin 0 -> 167 bytes .../src_assets_avatar_default.png | Bin 0 -> 561 bytes .../src_assets_dark_cover_image.png | Bin 0 -> 7130 bytes .../src_assets_default_cover_image.png | Bin 0 -> 31546 bytes .../res/drawable-xxhdpi/src_assets_esteem.png | Bin 0 -> 3831 bytes .../src_assets_esteem_logo_transparent.png | Bin 0 -> 2940 bytes .../drawable-xxhdpi/src_assets_keep_calm.png | Bin 0 -> 24763 bytes .../src_assets_love_mascot.png | Bin 0 -> 316711 bytes .../drawable-xxhdpi/src_assets_no_image.png | Bin 0 -> 27896 bytes .../drawable-xxhdpi/src_assets_no_post.png | Bin 0 -> 67901 bytes .../src_assets_side_menu_background.png | Bin 0 -> 9365 bytes .../src_assets_steem_connect.png | Bin 0 -> 921 bytes ...gationstack_dist_views_assets_backicon.png | Bin 0 -> 207 bytes ...agePickerController-QBImagePicker.xcscheme | 29 +- .../xcschemes/xcschememanagement.plist | 44 - .../Pods-esteem/Pods-esteem.debug.xcconfig | 1 - .../Pods-esteem/Pods-esteem.release.xcconfig | 1 - .../Pods-esteemTests.debug.xcconfig | 1 - .../Pods-esteemTests.release.xcconfig | 1 - 50 files changed, 1387 insertions(+), 1450 deletions(-) create mode 100644 android/app/src/main/res/drawable-hdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png create mode 100644 android/app/src/main/res/drawable-mdpi/node_modules_reactnativedatepicker_date_icon.png create mode 100644 android/app/src/main/res/drawable-mdpi/node_modules_reactnativehtmlrenderer_src_assets_default.png create mode 100644 android/app/src/main/res/drawable-mdpi/node_modules_reactnativehtmlrenderer_src_assets_error.png create mode 100644 android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png create mode 100644 android/app/src/main/res/drawable-mdpi/node_modules_reactnavigationstack_dist_views_assets_backiconmask.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_avatar_default.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_dark_cover_image.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_default_cover_image.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_esteem.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_esteem_logo_transparent.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_keep_calm.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_love_mascot.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_no_image.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_no_post.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_nsfw.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_side_menu_background.png create mode 100644 android/app/src/main/res/drawable-mdpi/src_assets_steem_connect.png create mode 100644 android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_avatar_default.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_dark_cover_image.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_default_cover_image.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_esteem.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_esteem_logo_transparent.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_keep_calm.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_love_mascot.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_no_image.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_no_post.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_side_menu_background.png create mode 100644 android/app/src/main/res/drawable-xhdpi/src_assets_steem_connect.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_avatar_default.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_dark_cover_image.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_default_cover_image.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_esteem.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_esteem_logo_transparent.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_keep_calm.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_love_mascot.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_no_image.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_no_post.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_side_menu_background.png create mode 100644 android/app/src/main/res/drawable-xxhdpi/src_assets_steem_connect.png create mode 100644 android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigationstack_dist_views_assets_backicon.png diff --git a/android/app/src/main/assets/index.android.bundle b/android/app/src/main/assets/index.android.bundle index 9d3b4cfd1..e90c877b9 100644 --- a/android/app/src/main/assets/index.android.bundle +++ b/android/app/src/main/assets/index.android.bundle @@ -8,7 +8,7 @@ var __DEV__=false,__BUNDLE_START_TIME__=this.nativePerformanceNow?nativePerforma !(function(e){function r(e,r){if(null==this)throw new TypeError('Array.prototype.findIndex called on null or undefined');if('function'!=typeof e)throw new TypeError('predicate must be a function');for(var n=Object(this),t=n.length>>>0,o=0;o=0?t=i:(t=n+i)<0&&(t=0);t2?f-2:0),u=2;uT.length&&T.push(t)}function L(t,n,f,l){var c=typeof t;"undefined"!==c&&"boolean"!==c||(t=null);var p=!1;if(null===t)p=!0;else switch(c){case"string":case"number":p=!0;break;case"object":switch(t.$$typeof){case o:case u:p=!0}}if(p)return f(l,t,""===n?"."+z(t,0):n),1;if(p=0,n=""===n?".":n+":",Array.isArray(t))for(var y=0;yV.length&&V.push(t)}function N(t,n,f,l){var c=typeof t;"undefined"!==c&&"boolean"!==c||(t=null);var p=!1;if(null===t)p=!0;else switch(c){case"string":case"number":p=!0;break;case"object":switch(t.$$typeof){case o:case u:p=!0}}if(p)return f(l,t,""===n?"."+B(t,0):n),1;if(p=0,n=""===n?".":n+":",Array.isArray(t))for(var y=0;y2&&void 0!==arguments[2]?arguments[2]:-1;if(0===o)return!0;if(n===f)return!1;if('function'==typeof n&&'function'==typeof f)return!1;if('object'!=typeof n||null===n)return n!==f;if('object'!=typeof f||null===f)return!0;if(n.constructor!==f.constructor)return!0;if(Array.isArray(n)){var u=n.length;if(f.length!==u)return!0;for(var c=0;c=u){s=o;break}o=o.next}while(o!==n);null===s?s=n:s===n&&(n=y,p()),(u=s.previous).next=s.previous=y,y.next=s,y.previous=u}}function y(){if(-1===o&&null!==n&&1===n.priorityLevel){u=!0,c.didTimeout=!0;try{do{v()}while(null!==n&&1===n.priorityLevel)}finally{u=!1,null!==n?p():s=!1}}}function w(t){u=!0,c.didTimeout=t;try{if(t)for(;null!==n;){var o=e.unstable_now();if(!(n.expirationTime<=o))break;do{v()}while(null!==n&&n.expirationTime<=o)}else if(null!==n)do{v()}while(null!==n&&0=S-o){if(!(-1!==t&&t<=o))return O||(O=!0,F(z)),E=n,void(N=t);l=!0}if(null!==n){R=!0;try{n(l)}finally{R=!1}}}},!1);var z=function n(t){if(null!==E){F(n);var o=t-S+W;oo&&(o=8),W=ot?window.postMessage($,"*"):O||(O=!0,F(z))},T=function(){E=null,B=!1,N=-1}}e.unstable_ImmediatePriority=1,e.unstable_UserBlockingPriority=2,e.unstable_NormalPriority=3,e.unstable_IdlePriority=4,e.unstable_runWithPriority=function(n,l){switch(n){case 1:case 2:case 3:case 4:break;default:n=3}var u=t,s=o;t=n,o=e.unstable_now();try{return l()}finally{t=u,o=s,y()}},e.unstable_scheduleCallback=function(l,u){var s=-1!==o?o:e.unstable_now();if("object"==typeof u&&null!==u&&"number"==typeof u.timeout)u=s+u.timeout;else switch(t){case 1:u=s+-1;break;case 2:u=s+250;break;case 4:u=s+1073741823;break;default:u=s+5e3}if(l={callback:l,priorityLevel:t,expirationTime:u,next:null,previous:null},null===n)n=l.next=l.previous=l,p();else{s=null;var f=n;do{if(f.expirationTime>u){s=f;break}f=f.next}while(f!==n);null===s?s=n:s===n&&(n=l,p()),(u=s.previous).next=s.previous=l,l.next=s,l.previous=u}return l},e.unstable_cancelCallback=function(t){var o=t.next;if(null!==o){if(o===t)n=null;else{t===n&&(n=o);var l=t.previous;l.next=o,o.previous=l}t.next=t.previous=null}},e.unstable_wrapCallback=function(n){var l=t;return function(){var u=t,s=o;t=l,o=e.unstable_now();try{return n.apply(this,arguments)}finally{t=u,o=s,y()}}},e.unstable_getCurrentPriorityLevel=function(){return t}},146,[]); +__d(function(g,r,i,a,m,e,d){'use strict';Object.defineProperty(e,"__esModule",{value:!0});var n=null,t=!1,l=3,o=-1,u=-1,s=!1,f=!1;function c(){if(!s){var t=n.expirationTime;f?F():f=!0,C(b,t)}}function p(){var t=n,o=n.next;if(n===o)n=null;else{var s=n.previous;n=s.next=o,o.previous=s}t.next=t.previous=null,s=t.callback,o=t.expirationTime,t=t.priorityLevel;var f=l,p=u;l=t,u=o;try{var v=s()}finally{l=f,u=p}if("function"==typeof v)if(v={callback:v,priorityLevel:t,expirationTime:o,next:null,previous:null},null===n)n=v.next=v.previous=v;else{s=null,t=n;do{if(t.expirationTime>=o){s=t;break}t=t.next}while(t!==n);null===s?s=n:s===n&&(n=v,c()),(o=s.previous).next=s.previous=v,v.next=s,v.previous=o}}function v(){if(-1===o&&null!==n&&1===n.priorityLevel){s=!0;try{do{p()}while(null!==n&&1===n.priorityLevel)}finally{s=!1,null!==n?c():f=!1}}}function b(l){s=!0;var o=t;t=l;try{if(l)for(;null!==n;){var u=e.unstable_now();if(!(n.expirationTime<=u))break;do{p()}while(null!==n&&n.expirationTime<=u)}else if(null!==n)do{p()}while(null!==n&&!L())}finally{s=!1,t=o,null!==n?c():f=!1,v()}}var y,w,_=Date,x="function"==typeof setTimeout?setTimeout:void 0,h="function"==typeof clearTimeout?clearTimeout:void 0,k="function"==typeof requestAnimationFrame?requestAnimationFrame:void 0,T="function"==typeof cancelAnimationFrame?cancelAnimationFrame:void 0;function M(n){y=k(function(t){h(w),n(t)}),w=x(function(){T(y),n(e.unstable_now())},100)}if("object"==typeof performance&&"function"==typeof performance.now){var P=performance;e.unstable_now=function(){return P.now()}}else e.unstable_now=function(){return _.now()};var C,F,L,A=null;if("undefined"!=typeof window?A=window:void 0!==g&&(A=g),A&&A._schedMock){var j=A._schedMock;C=j[0],F=j[1],L=j[2],e.unstable_now=j[3]}else if("undefined"==typeof window||"function"!=typeof MessageChannel){var q=null,E=function(n){if(null!==q)try{q(n)}finally{q=null}};C=function(n){null!==q?setTimeout(C,0,n):(q=n,setTimeout(E,0,!1))},F=function(){q=null},L=function(){return!1}}else{"undefined"!=typeof console&&("function"!=typeof k&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"),"function"!=typeof T&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://fb.me/react-polyfills"));var I=null,N=!1,B=-1,D=!1,O=!1,U=0,W=33,Y=33;L=function(){return U<=e.unstable_now()};var z=new MessageChannel,G=z.port2;z.port1.onmessage=function(){N=!1;var n=I,t=B;I=null,B=-1;var l=e.unstable_now(),o=!1;if(0>=U-l){if(!(-1!==t&&t<=l))return D||(D=!0,M(H)),I=n,void(B=t);o=!0}if(null!==n){O=!0;try{n(o)}finally{O=!1}}};var H=function n(t){if(null!==I){M(n);var l=t-U+Y;ll&&(l=8),Y=lt?G.postMessage(void 0):D||(D=!0,M(H))},F=function(){I=null,N=!1,B=-1}}e.unstable_ImmediatePriority=1,e.unstable_UserBlockingPriority=2,e.unstable_NormalPriority=3,e.unstable_IdlePriority=5,e.unstable_LowPriority=4,e.unstable_runWithPriority=function(n,t){switch(n){case 1:case 2:case 3:case 4:case 5:break;default:n=3}var u=l,s=o;l=n,o=e.unstable_now();try{return t()}finally{l=u,o=s,v()}},e.unstable_next=function(n){switch(l){case 1:case 2:case 3:var t=3;break;default:t=l}var u=l,s=o;l=t,o=e.unstable_now();try{return n()}finally{l=u,o=s,v()}},e.unstable_scheduleCallback=function(t,u){var s=-1!==o?o:e.unstable_now();if("object"==typeof u&&null!==u&&"number"==typeof u.timeout)u=s+u.timeout;else switch(l){case 1:u=s+-1;break;case 2:u=s+250;break;case 5:u=s+1073741823;break;case 4:u=s+1e4;break;default:u=s+5e3}if(t={callback:t,priorityLevel:l,expirationTime:u,next:null,previous:null},null===n)n=t.next=t.previous=t,c();else{s=null;var f=n;do{if(f.expirationTime>u){s=f;break}f=f.next}while(f!==n);null===s?s=n:s===n&&(n=t,c()),(u=s.previous).next=s.previous=t,t.next=s,t.previous=u}return t},e.unstable_cancelCallback=function(t){var l=t.next;if(null!==l){if(l===t)n=null;else{t===n&&(n=l);var o=t.previous;o.next=l,l.previous=o}t.next=t.previous=null}},e.unstable_wrapCallback=function(n){var t=l;return function(){var u=l,s=o;l=t,o=e.unstable_now();try{return n.apply(this,arguments)}finally{l=u,o=s,v()}}},e.unstable_getCurrentPriorityLevel=function(){return l},e.unstable_shouldYield=function(){return!t&&(null!==n&&n.expirationTime4?p-4:0),l=4;l=this._startTime+this._duration)return 0===this._duration?this._onUpdate(this._toValue):this._onUpdate(this._fromValue+this._easing(1)*(this._toValue-this._fromValue)),void this.__debouncedOnEnd({finished:!0});this._onUpdate(this._fromValue+this._easing((t-this._startTime)/this._duration)*(this._toValue-this._fromValue)),this.__active&&(this._animationFrame=requestAnimationFrame(this.onUpdate.bind(this)))}},{key:"stop",value:function(){u(_(f.prototype),"stop",this).call(this),this.__active=!1,clearTimeout(this._timeout),g.cancelAnimationFrame(this._animationFrame),this.__debouncedOnEnd({finished:!1})}}]),f})();m.exports=f},216,[19,20,27,30,31,33,194,211,213,197,217]); __d(function(g,r,i,a,m,e,d){'use strict';var n,u=r(d[0]),t=r(d[1]),o=(function(){function o(){u(this,o)}return t(o,null,[{key:"step0",value:function(n){return n>0?1:0}},{key:"step1",value:function(n){return n>=1?1:0}},{key:"linear",value:function(n){return n}},{key:"ease",value:function(u){return n||(n=o.bezier(.42,0,1,1)),n(u)}},{key:"quad",value:function(n){return n*n}},{key:"cubic",value:function(n){return n*n*n}},{key:"poly",value:function(n){return function(u){return Math.pow(u,n)}}},{key:"sin",value:function(n){return 1-Math.cos(n*Math.PI/2)}},{key:"circle",value:function(n){return 1-Math.sqrt(1-n*n)}},{key:"exp",value:function(n){return Math.pow(2,10*(n-1))}},{key:"elastic",value:function(){var n=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:1)*Math.PI;return function(u){return 1-Math.pow(Math.cos(u*Math.PI/2),3)*Math.cos(u*n)}}},{key:"back",value:function(n){return void 0===n&&(n=1.70158),function(u){return u*u*((n+1)*u-n)}}},{key:"bounce",value:function(n){return n<.36363636363636365?7.5625*n*n:n<.7272727272727273?7.5625*(n-=.5454545454545454)*n+.75:n<.9090909090909091?7.5625*(n-=.8181818181818182)*n+.9375:7.5625*(n-=.9545454545454546)*n+.984375}},{key:"bezier",value:function(n,u,t,o){return r(d[2])(n,u,t,o)}},{key:"in",value:function(n){return n}},{key:"out",value:function(n){return function(u){return 1-n(1-u)}}},{key:"inOut",value:function(n){return function(u){return u<.5?n(2*u)/2:1-n(2*(1-u))/2}}}]),o})();m.exports=o},217,[19,20,218]); __d(function(g,r,i,a,m,e,d){'use strict';var n=4,t=.001,u=1e-7,o=10,f=.1,c='function'==typeof Float32Array;function v(n,t){return 1-3*t+3*n}function s(n,t){return 3*t-6*n}function w(n){return 3*n}function l(n,t,u){return((v(t,u)*n+s(t,u))*n+w(t))*n}function y(n,t,u){return 3*v(t,u)*n*n+2*s(t,u)*n+w(t)}function b(n,t,f,c,v){var s,w,y=0;do{(s=l(w=t+(f-t)/2,c,v)-n)>0?f=w:t=w}while(Math.abs(s)>u&&++y=t?h(u,w,n,o):0===l?w:b(u,c,c+f,n,o)}return function(t){return n===u&&o===v?t:0===t?0:1===t?1:l(A(t),u,v)}}},218,[]); -__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),p=r(d[4]),c=r(d[5]),_=r(d[6]),h=r(d[7]).AnimatedEvent,v=r(d[8]),l=r(d[9]),u=r(d[10]),f=r(d[11]);m.exports=function(k){f('function'!=typeof k||k.prototype&&k.prototype.isReactComponent,"`createAnimatedComponent` does not support stateless functional components; use a class component instead.");var N=(function(u){function f(t){var o;return n(this,f),(o=s(this,p(f).call(this,t)))._invokeAnimatedPropsCallbackOnMount=!1,o._eventDetachers=[],o._animatedPropsCallback=function(){if(null==o._component)o._invokeAnimatedPropsCallbackOnMount=!0;else if(f.__skipSetNativeProps_FOR_TESTS_ONLY||'function'!=typeof o._component.setNativeProps)o.forceUpdate();else{if(o._propsAnimated.__isNative)throw new Error("Attempting to run JS driven animation on animated node that has been moved to \"native\" earlier by starting an animation with `useNativeDriver: true`");o._component.setNativeProps(o._propsAnimated.__getAnimatedValue())}},o._setComponentRef=o._setComponentRef.bind(_(_(o))),o}return c(f,u),o(f,[{key:"componentWillUnmount",value:function(){this._propsAnimated&&this._propsAnimated.__detach(),this._detachNativeEvents()}},{key:"setNativeProps",value:function(t){this._component.setNativeProps(t)}},{key:"UNSAFE_componentWillMount",value:function(){this._attachProps(this.props)}},{key:"componentDidMount",value:function(){this._invokeAnimatedPropsCallbackOnMount&&(this._invokeAnimatedPropsCallbackOnMount=!1,this._animatedPropsCallback()),this._propsAnimated.setNativeView(this._component),this._attachNativeEvents()}},{key:"_attachNativeEvents",value:function(){var t=this,n=this._component.getScrollableNode?this._component.getScrollableNode():this._component,o=function(o){var s=t.props[o];s instanceof h&&s.__isNative&&(s.__attach(n,o),t._eventDetachers.push(function(){return s.__detach(n,o)}))};for(var s in this.props)o(s)}},{key:"_detachNativeEvents",value:function(){this._eventDetachers.forEach(function(t){return t()}),this._eventDetachers=[]}},{key:"_attachProps",value:function(t){var n=this._propsAnimated;this._propsAnimated=new v(t,this._animatedPropsCallback),n&&n.__detach()}},{key:"UNSAFE_componentWillReceiveProps",value:function(t){this._attachProps(t)}},{key:"componentDidUpdate",value:function(t){this._component!==this._prevComponent&&this._propsAnimated.setNativeView(this._component),this._component===this._prevComponent&&t===this.props||(this._detachNativeEvents(),this._attachNativeEvents())}},{key:"render",value:function(){var n=this._propsAnimated.__getValue();return l.createElement(k,t({},n,{ref:this._setComponentRef,collapsable:!this._propsAnimated.__isNative&&n.collapsable}))}},{key:"_setComponentRef",value:function(t){this._prevComponent=this._component,this._component=t}},{key:"getNode",value:function(){return this._component}}]),f})(l.Component);N.__skipSetNativeProps_FOR_TESTS_ONLY=!1;var y=k.propTypes;return N.propTypes={style:function(t,n,o){if(y)for(var s in u)y[s]||void 0===t[s]||console.warn('You are setting the style `{ '+s+": ... }` as a prop. You should nest it in a style object. E.g. `{ style: { "+s+': ... } }`')}},N}},219,[8,19,20,27,30,33,29,193,206,45,67,3]); +__d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),p=r(d[4]),c=r(d[5]),_=r(d[6]),h=r(d[7]).AnimatedEvent,v=r(d[8]),l=r(d[9]),u=r(d[10]),f=r(d[11]);m.exports=function(k){f('function'!=typeof k||k.prototype&&k.prototype.isReactComponent,"`createAnimatedComponent` does not support stateless functional components; use a class component instead.");var N=(function(u){function f(t){var o;return n(this,f),(o=s(this,p(f).call(this,t)))._invokeAnimatedPropsCallbackOnMount=!1,o._eventDetachers=[],o._animatedPropsCallback=function(){if(null==o._component)o._invokeAnimatedPropsCallbackOnMount=!0;else if(f.__skipSetNativeProps_FOR_TESTS_ONLY||'function'!=typeof o._component.setNativeProps)o.forceUpdate();else{if(o._propsAnimated.__isNative)throw new Error("Attempting to run JS driven animation on animated node that has been moved to \"native\" earlier by starting an animation with `useNativeDriver: true`");o._component.setNativeProps(o._propsAnimated.__getAnimatedValue())}},o._setComponentRef=o._setComponentRef.bind(c(o)),o}return _(f,u),o(f,[{key:"componentWillUnmount",value:function(){this._propsAnimated&&this._propsAnimated.__detach(),this._detachNativeEvents()}},{key:"setNativeProps",value:function(t){this._component.setNativeProps(t)}},{key:"UNSAFE_componentWillMount",value:function(){this._attachProps(this.props)}},{key:"componentDidMount",value:function(){this._invokeAnimatedPropsCallbackOnMount&&(this._invokeAnimatedPropsCallbackOnMount=!1,this._animatedPropsCallback()),this._propsAnimated.setNativeView(this._component),this._attachNativeEvents()}},{key:"_attachNativeEvents",value:function(){var t=this,n=this._component.getScrollableNode?this._component.getScrollableNode():this._component,o=function(o){var s=t.props[o];s instanceof h&&s.__isNative&&(s.__attach(n,o),t._eventDetachers.push(function(){return s.__detach(n,o)}))};for(var s in this.props)o(s)}},{key:"_detachNativeEvents",value:function(){this._eventDetachers.forEach(function(t){return t()}),this._eventDetachers=[]}},{key:"_attachProps",value:function(t){var n=this._propsAnimated;this._propsAnimated=new v(t,this._animatedPropsCallback),n&&n.__detach()}},{key:"UNSAFE_componentWillReceiveProps",value:function(t){this._attachProps(t)}},{key:"componentDidUpdate",value:function(t){this._component!==this._prevComponent&&this._propsAnimated.setNativeView(this._component),this._component===this._prevComponent&&t===this.props||(this._detachNativeEvents(),this._attachNativeEvents())}},{key:"render",value:function(){var n=this._propsAnimated.__getValue();return l.createElement(k,t({},n,{ref:this._setComponentRef,collapsable:!this._propsAnimated.__isNative&&n.collapsable}))}},{key:"_setComponentRef",value:function(t){this._prevComponent=this._component,this._component=t}},{key:"getNode",value:function(){return this._component}}]),f})(l.Component);N.__skipSetNativeProps_FOR_TESTS_ONLY=!1;var y=k.propTypes;return N.propTypes={style:function(t,n,o){if(y)for(var s in u)y[s]||void 0===t[s]||console.warn('You are setting the style `{ '+s+": ... }` as a prop. You should nest it in a style object. E.g. `{ style: { "+s+': ... } }`')}},N}},219,[8,19,20,27,30,29,33,193,206,45,67,3]); __d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),l=r(d[4]),u=r(d[5]),c=r(d[6]),p=r(d[7]),f=r(d[8]),h=r(d[9]),C=r(d[10]),y=(r(d[11]),r(d[12])),v=r(d[13]),_=c({},C.defaultProps,{numColumns:1}),b=(function(_){function b(t){var l;return n(this,b),(l=o(this,s(b).call(this,t)))._hasWarnedLegacy=!1,l._virtualizedListPairs=[],l._captureRef=function(t){l._listRef=t},l._getItem=function(t,n){var o=l.props.numColumns;if(o>1){for(var s=[],u=0;u1?(v(Array.isArray(t),"FlatList: Encountered internal consistency error, expected each item to consist of an array with 1-%s columns; instead, received a single item.",u),t.map(function(t,o){return s(t,n*u+o)}).join(':')):s(t,n)},l._renderItem=function(t){var n=l.props,o=n.renderItem,s=n.numColumns,u=n.columnWrapperStyle;if(s>1){var c=t.item,p=t.index;return v(Array.isArray(c),'Expected array of items with numColumns > 1'),f.createElement(h,{style:y.compose(w.row,u)},c.map(function(n,l){var u=o({item:n,index:p*s+l,separators:t.separators});return u&&f.cloneElement(u,{key:l})}))}return o(t)},l._checkProps(l.props),l.props.viewabilityConfigCallbackPairs?l._virtualizedListPairs=l.props.viewabilityConfigCallbackPairs.map(function(t){return{viewabilityConfig:t.viewabilityConfig,onViewableItemsChanged:l._createOnViewableItemsChanged(t.onViewableItemsChanged)}}):l.props.onViewableItemsChanged&&l._virtualizedListPairs.push({viewabilityConfig:l.props.viewabilityConfig,onViewableItemsChanged:l._createOnViewableItemsChanged(l.props.onViewableItemsChanged)}),l}return u(b,_),l(b,[{key:"scrollToEnd",value:function(t){this._listRef&&this._listRef.scrollToEnd(t)}},{key:"scrollToIndex",value:function(t){this._listRef&&this._listRef.scrollToIndex(t)}},{key:"scrollToItem",value:function(t){this._listRef&&this._listRef.scrollToItem(t)}},{key:"scrollToOffset",value:function(t){this._listRef&&this._listRef.scrollToOffset(t)}},{key:"recordInteraction",value:function(){this._listRef&&this._listRef.recordInteraction()}},{key:"flashScrollIndicators",value:function(){this._listRef&&this._listRef.flashScrollIndicators()}},{key:"getScrollResponder",value:function(){if(this._listRef)return this._listRef.getScrollResponder()}},{key:"getScrollableNode",value:function(){if(this._listRef)return this._listRef.getScrollableNode()}},{key:"setNativeProps",value:function(t){this._listRef&&this._listRef.setNativeProps(t)}}]),l(b,[{key:"componentDidUpdate",value:function(t){v(t.numColumns===this.props.numColumns,"Changing numColumns on the fly is not supported. Change the key prop on FlatList when changing the number of columns to force a fresh render of the component."),v(t.onViewableItemsChanged===this.props.onViewableItemsChanged,'Changing onViewableItemsChanged on the fly is not supported'),v(t.viewabilityConfig===this.props.viewabilityConfig,'Changing viewabilityConfig on the fly is not supported'),v(t.viewabilityConfigCallbackPairs===this.props.viewabilityConfigCallbackPairs,'Changing viewabilityConfigCallbackPairs on the fly is not supported'),this._checkProps(this.props)}},{key:"_checkProps",value:function(t){var n=t.getItem,o=t.getItemCount,s=t.horizontal,l=t.legacyImplementation,u=t.numColumns,c=t.columnWrapperStyle,p=t.onViewableItemsChanged,f=t.viewabilityConfigCallbackPairs;v(!n&&!o,'FlatList does not support custom data formats.'),u>1?v(!s,'numColumns does not support horizontal.'):v(!c,'columnWrapperStyle not supported for single column lists'),l&&(v(1===u,'Legacy list does not support multiple columns.'),this._hasWarnedLegacy||(console.warn("FlatList: legacyImplementation is deprecated and will be removed in a future release - some features not supported and performance may suffer. Please migrate to the default implementation."),this._hasWarnedLegacy=!0)),v(!(p&&f),"FlatList does not support setting both onViewableItemsChanged and viewabilityConfigCallbackPairs.")}},{key:"_pushMultiColumnViewable",value:function(t,n){var o=this.props,s=o.numColumns,l=o.keyExtractor;n.item.forEach(function(o,u){v(null!=n.index,'Missing index!');var p=n.index*s+u;t.push(c({},n,{item:o,key:l(o,p),index:p}))})}},{key:"_createOnViewableItemsChanged",value:function(t){var n=this;return function(o){var s=n.props.numColumns;if(t)if(s>1){var l=[],u=[];o.viewableItems.forEach(function(t){return n._pushMultiColumnViewable(u,t)}),o.changed.forEach(function(t){return n._pushMultiColumnViewable(l,t)}),t({viewableItems:u,changed:l})}else t(o)}}},{key:"render",value:function(){return this.props.legacyImplementation?f.createElement(p,t({},this.props,{items:this.props.data,ref:this._captureRef})):f.createElement(C,t({},this.props,{renderItem:this._renderItem,getItem:this._getItem,getItemCount:this._getItemCount,keyExtractor:this._keyExtractor,ref:this._captureRef,viewabilityConfigCallbackPairs:this._virtualizedListPairs}))}}]),b})(f.PureComponent);b.defaultProps=_;var w=y.create({row:{flexDirection:'row'}});m.exports=b},220,[8,19,27,30,20,33,43,221,45,74,239,222,49,3]); __d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),c=r(d[4]),u=r(d[5]),p=r(d[6]),l=r(d[7]),f=r(d[8]),h=r(d[9]),v=r(d[10]),w=(function(f){function h(){var t,o,u=this;n(this,h);for(var f=arguments.length,w=new Array(f),y=0;y=this._prevRenderedRowsCount&&l.rowShouldUpdate(v,I),D=s.createElement(u,{key:'r_'+P,shouldUpdate:!!F,render:this.props.renderRow.bind(null,l.getRowData(v,I),b,L,this._onRowHighlighted)});if(n.push(D),C++,this.props.renderSeparator&&(I!==E.length-1||v===h.length-1)){var N=this.state.highlightedRow.sectionID===b&&(this.state.highlightedRow.rowID===L||this.state.highlightedRow.rowID===E[I+1]),A=this.props.renderSeparator(b,L,N);A&&(n.push(s.createElement(R,{key:'s_'+P},A)),C++)}if(++c===this.state.curRenderedRowsCount)break}if(c>=this.state.curRenderedRowsCount)break}var H=this.props,z=H.renderScrollComponent,V=o(H,["renderScrollComponent"]);return V.scrollEventThrottle||(V.scrollEventThrottle=50),void 0===V.removeClippedSubviews&&(V.removeClippedSubviews=!0),t(V,{onScroll:this._onScroll,stickyHeaderIndices:this.props.stickyHeaderIndices.concat(p),onKeyboardWillShow:void 0,onKeyboardWillHide:void 0,onKeyboardDidShow:void 0,onKeyboardDidHide:void 0}),_(z(V),{ref:this._setScrollComponentRef,onContentSizeChange:this._onContentSizeChange,onLayout:this._onLayout,DEPRECATED_sendUpdatedChildFrames:void 0!==typeof V.onChangeVisibleRows},w,n,S)},_requestAnimationFrame:function(t){var o=this,n=requestAnimationFrame(function(){o._rafIds=o._rafIds.filter(function(t){return t!==n}),t()});this._rafIds.push(n)},_measureAndUpdateScrollProps:function(){var t=this.getScrollResponder();t&&t.getInnerViewNode&&h&&h.calculateChildFrames&&h.calculateChildFrames(l.findNodeHandle(t),this._updateVisibleRows)},_setScrollComponentRef:function(t){this._scrollComponent=t},_onContentSizeChange:function(t,o){var n=this.props.horizontal?t:o;n!==this.scrollProperties.contentLength&&(this.scrollProperties.contentLength=n,this._updateVisibleRows(),this._renderMoreRowsIfNeeded()),this.props.onContentSizeChange&&this.props.onContentSizeChange(t,o)},_onLayout:function(t){var o=t.nativeEvent.layout,n=o.width,s=o.height,l=this.props.horizontal?n:s;l!==this.scrollProperties.visibleLength&&(this.scrollProperties.visibleLength=l,this._updateVisibleRows(),this._renderMoreRowsIfNeeded()),this.props.onLayout&&this.props.onLayout(t)},_maybeCallOnEndReached:function(t){return!!(this.props.onEndReached&&this.scrollProperties.contentLength!==this._sentEndForContentLength&&this._getDistanceFromEnd(this.scrollProperties)h||Pthis.props.onEndReachedThreshold&&(this._sentEndForContentLength=null),this.props.onScroll&&this.props.onScroll(t)}});m.exports=C},222,[8,6,223,224,41,45,77,5,226,227,236,74,237,184,225,165,103,3]); @@ -247,7 +247,7 @@ __d(function(g,r,i,a,m,e,d){'use strict';r(d[0]);m.exports=function(t){return'no __d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]),t=r(d[1]),u=r(d[2]),o=r(d[3]),s=r(d[4]),p=r(d[5]),c=r(d[6]),h=(function(p){function c(){return n(this,c),u(this,o(c).apply(this,arguments))}return s(c,p),t(c,[{key:"shouldComponentUpdate",value:function(n){return n.shouldUpdate}},{key:"render",value:function(){return this.props.render()}}]),c})(p.Component);h.propTypes={shouldUpdate:c.bool.isRequired,render:c.func.isRequired},m.exports=h},236,[19,20,27,30,33,45,60]); __d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]),t=r(d[1]);m.exports=function(c,l){for(var o=l.ref,f=c.ref,p=arguments.length,u=new Array(p>2?p-2:0),y=2;y0&&s>0&&null!=p.props.initialScrollIndex&&p.props.initialScrollIndex>0&&!p._hasDoneInitialScroll&&(p.scrollToIndex({animated:!1,index:p.props.initialScrollIndex}),p._hasDoneInitialScroll=!0),p.props.onContentSizeChange&&p.props.onContentSizeChange(t,s),p._scrollMetrics.contentLength=p._selectLength({height:s,width:t}),p._scheduleCellsToRenderUpdate(),p._maybeCallOnEndReached()},p._convertParentScrollMetrics=function(t){var s=t.offset-p._offsetFromParentVirtualizedList,n=t.visibleLength,o=s-p._scrollMetrics.offset;return{visibleLength:n,contentLength:p._scrollMetrics.contentLength,offset:s,dOffset:o}},p._onScroll=function(t){p._nestedChildLists.forEach(function(s){s.ref&&s.ref._onScroll(t)}),p.props.onScroll&&p.props.onScroll(t);var s=t.timeStamp,n=p._selectLength(t.nativeEvent.layoutMeasurement),o=p._selectLength(t.nativeEvent.contentSize),l=p._selectOffset(t.nativeEvent.contentOffset),h=l-p._scrollMetrics.offset;if(p._isNestedWithSameOrientation()){if(0===p._scrollMetrics.contentLength)return;var c=p._convertParentScrollMetrics({visibleLength:n,offset:l});n=c.visibleLength,o=c.contentLength,l=c.offset,h=c.dOffset}var u=p._scrollMetrics.timestamp?Math.max(1,s-p._scrollMetrics.timestamp):1,f=h/u;u>500&&p._scrollMetrics.dt>500&&o>5*n&&!p._hasWarned.perf&&(E("VirtualizedList: You have a large list that is slow to update - make sure your renderItem function renders components that follow React performance best practices like PureComponent, shouldComponentUpdate, etc.",{dt:u,prevDt:p._scrollMetrics.dt,contentLength:o}),p._hasWarned.perf=!0),p._scrollMetrics={contentLength:o,dt:u,dOffset:h,offset:l,timestamp:s,velocity:f,visibleLength:n},p._updateViewableItems(p.props.data),p.props&&(p._maybeCallOnEndReached(),0!==f&&p._fillRateHelper.activate(),p._computeBlankness(),p._scheduleCellsToRenderUpdate())},p._onScrollBeginDrag=function(t){p._nestedChildLists.forEach(function(s){s.ref&&s.ref._onScrollBeginDrag(t)}),p._viewabilityTuples.forEach(function(t){t.viewabilityHelper.recordInteraction()}),p._hasInteracted=!0,p.props.onScrollBeginDrag&&p.props.onScrollBeginDrag(t)},p._onScrollEndDrag=function(t){var s=t.nativeEvent.velocity;s&&(p._scrollMetrics.velocity=p._selectOffset(s)),p._computeBlankness(),p.props.onScrollEndDrag&&p.props.onScrollEndDrag(t)},p._onMomentumScrollEnd=function(t){p._scrollMetrics.velocity=0,p._computeBlankness(),p.props.onMomentumScrollEnd&&p.props.onMomentumScrollEnd(t)},p._updateCellsToRender=function(){var t=p.props,s=t.data,n=t.getItemCount,o=t.onEndReachedThreshold,l=p._isVirtualizationDisabled();p._updateViewableItems(s),s&&p.setState(function(t){var h;if(l){var c=p._scrollMetrics,u=c.contentLength,f=c.offset,_=c.visibleLength,v=u-_-f0)for(var y=h.first,C=h.last,L=y;L<=C;L++){var S=p._indicesToKeys.get(L),b=S&&p._cellKeysToChildListKeys.get(S);if(b){var M=!1,x=b,k=Array.isArray(x),E=0;for(x=k?x:x["function"==typeof Symbol&&"function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var I;if(k){if(E>=x.length)break;I=x[E++]}else{if((E=x.next()).done)break;I=E.value}var w=I,T=p._nestedChildLists.get(w);if(T&&T.ref&&T.ref.hasMore()){M=!0;break}}if(M){h.last=L;break}}}return h})},p._createViewToken=function(t,s){var n=p.props,o=n.data,l=n.getItem,h=n.keyExtractor,c=l(o,t);return{index:t,item:c,key:h(c,t),isViewable:s}},p._getFrameMetricsApprox=function(t){var s=p._getFrameMetrics(t);if(s&&s.index===t)return s;var n=p.props.getItemLayout;return I(!n,'Should not have to estimate frames when a measurement metrics function is provided'),{length:p._averageCellLength,offset:p._averageCellLength*t}},p._getFrameMetrics=function(t){var s=p.props,n=s.data,o=s.getItem,l=s.getItemCount,h=s.getItemLayout,c=s.keyExtractor;I(l(n)>t,'Tried to get frame for out of range index '+t);var u=o(n,t),f=u&&p._frames[c(u,t)];return f&&f.index===t||h&&(f=h(n,t)),f},I(!t.onScroll||!t.onScroll.__isNative,"Components based on VirtualizedList must be wrapped with Animated.createAnimatedComponent to support native onScroll events with useNativeDriver"),I(t.windowSize>0,'VirtualizedList: The windowSize prop must be present and set to a value greater than 0.'),p._fillRateHelper=new _(p._getFrameMetrics),p._updateCellsToRenderBatcher=new f(p._updateCellsToRender,p.props.updateCellsBatchingPeriod),p.props.viewabilityConfigCallbackPairs?p._viewabilityTuples=p.props.viewabilityConfigCallbackPairs.map(function(t){return{viewabilityHelper:new k(t.viewabilityConfig),onViewableItemsChanged:t.onViewableItemsChanged}}):p.props.onViewableItemsChanged&&p._viewabilityTuples.push({viewabilityHelper:new k(p.props.viewabilityConfig),onViewableItemsChanged:p.props.onViewableItemsChanged});var v={first:p.props.initialScrollIndex||0,last:Math.min(p.props.getItemCount(p.props.data),(p.props.initialScrollIndex||0)+p.props.initialNumToRender)-1};if(p._isNestedWithSameOrientation()){var C=p.context.virtualizedList.getNestedChildState(p.props.listKey||p._getCellKey());C&&(v=C,p.state=C,p._frames=C.frames)}return p.state=v,p}return p(z,v),c(z,[{key:"scrollToEnd",value:function(t){var s=!t||t.animated,n=this.props.getItemCount(this.props.data)-1,o=this._getFrameMetricsApprox(n),l=Math.max(0,o.offset+o.length+this._footerLength-this._scrollMetrics.visibleLength);this._scrollRef.scrollTo(this.props.horizontal?{x:l,animated:s}:{y:l,animated:s})}},{key:"scrollToIndex",value:function(t){var s=this.props,n=s.data,o=s.horizontal,l=s.getItemCount,h=s.getItemLayout,c=s.onScrollToIndexFailed,p=t.animated,u=t.index,f=t.viewOffset,_=t.viewPosition;if(I(u>=0&&uthis._highestMeasuredFrameIndex)return I(!!c,"scrollToIndex should be used in conjunction with getItemLayout or onScrollToIndexFailed, otherwise there is no way to know the location of offscreen indices or handle failures."),void c({averageItemLength:this._averageCellLength,highestMeasuredFrameIndex:this._highestMeasuredFrameIndex,index:u});var v=this._getFrameMetricsApprox(u),y=Math.max(0,v.offset-(_||0)*(this._scrollMetrics.visibleLength-v.length))-(f||0);this._scrollRef.scrollTo(o?{x:y,animated:p}:{y:y,animated:p})}},{key:"scrollToItem",value:function(t){for(var s=t.item,o=this.props,l=o.data,h=o.getItem,c=(0,o.getItemCount)(l),p=0;p0){w=!1,T='';var E=f?'width':'height',I=this.props.initialScrollIndex?-1:this.props.initialNumToRender-1,R=this.state,z=R.first,K=R.last;this._pushCells(C,S,L,0,I,v);var A=Math.max(I+1,z);if(!_&&z>I+1){var O=!1;if(L.size>0)for(var P=c?1:0,V=A-1;V>I;V--)if(L.has(V+P)){var D=this._getFrameMetricsApprox(I),H=this._getFrameMetricsApprox(V),B=H.offset-D.offset;C.push(y.createElement(x,{key:"$sticky_lead",style:t({},E,B)})),this._pushCells(C,S,L,V,V,v);var U=this._getFrameMetricsApprox(z).offset-(H.offset+H.length);C.push(y.createElement(x,{key:"$sticky_trail",style:t({},E,U)})),O=!0;break}if(!O){var W=this._getFrameMetricsApprox(I),$=this._getFrameMetricsApprox(z).offset-(W.offset+W.length);C.push(y.createElement(x,{key:"$lead_spacer",style:t({},E,$)}))}}if(this._pushCells(C,S,L,A,K,v),!this._hasWarned.keys&&w&&(console.warn("VirtualizedList: missing keys for items, make sure to specify a key property on each item or provide a custom keyExtractor.",T),this._hasWarned.keys=!0),!_&&K=p.length)break;_=p[f++]}else{if((f=p.next()).done)break;_=f.value}var v=_,y=this._nestedChildLists.get(v);y&&y.ref&&y.ref.measureLayoutRelativeToContainingList()}}this._computeBlankness()}},{key:"measureLayoutRelativeToContainingList",value:function(){var t=this;try{M.measureLayout(C.findNodeHandle(this),C.findNodeHandle(this.context.virtualizedList.getOutermostParentListRef()),function(t){console.warn("VirtualizedList: Encountered an error while measuring a list's offset from its containing VirtualizedList.")},function(s,n,o,l){t._offsetFromParentVirtualizedList=t._selectOffset({x:s,y:n}),t._scrollMetrics.contentLength=t._selectLength({width:o,height:l});var h=t._convertParentScrollMetrics(t.context.virtualizedList.getScrollMetrics());t._scrollMetrics.visibleLength=h.visibleLength,t._scrollMetrics.offset=h.offset})}catch(t){console.warn('measureLayoutRelativeToContainingList threw an error',t.stack)}}},{key:"_renderDebugOverlay",value:function(){for(var t=this._scrollMetrics.visibleLength/this._scrollMetrics.contentLength,s=[],o=this.props.getItemCount(this.props.data),l=0;l0){var _=l-this._getFrameMetricsApprox(s).offset;u=u||_<0||c<-2&&_2&&v0&&s>0&&null!=u.props.initialScrollIndex&&u.props.initialScrollIndex>0&&!u._hasDoneInitialScroll&&(u.scrollToIndex({animated:!1,index:u.props.initialScrollIndex}),u._hasDoneInitialScroll=!0),u.props.onContentSizeChange&&u.props.onContentSizeChange(t,s),u._scrollMetrics.contentLength=u._selectLength({height:s,width:t}),u._scheduleCellsToRenderUpdate(),u._maybeCallOnEndReached()},u._convertParentScrollMetrics=function(t){var s=t.offset-u._offsetFromParentVirtualizedList,n=t.visibleLength,o=s-u._scrollMetrics.offset;return{visibleLength:n,contentLength:u._scrollMetrics.contentLength,offset:s,dOffset:o}},u._onScroll=function(t){u._nestedChildLists.forEach(function(s){s.ref&&s.ref._onScroll(t)}),u.props.onScroll&&u.props.onScroll(t);var s=t.timeStamp,n=u._selectLength(t.nativeEvent.layoutMeasurement),o=u._selectLength(t.nativeEvent.contentSize),l=u._selectOffset(t.nativeEvent.contentOffset),h=l-u._scrollMetrics.offset;if(u._isNestedWithSameOrientation()){if(0===u._scrollMetrics.contentLength)return;var c=u._convertParentScrollMetrics({visibleLength:n,offset:l});n=c.visibleLength,o=c.contentLength,l=c.offset,h=c.dOffset}var p=u._scrollMetrics.timestamp?Math.max(1,s-u._scrollMetrics.timestamp):1,f=h/p;p>500&&u._scrollMetrics.dt>500&&o>5*n&&!u._hasWarned.perf&&(E("VirtualizedList: You have a large list that is slow to update - make sure your renderItem function renders components that follow React performance best practices like PureComponent, shouldComponentUpdate, etc.",{dt:p,prevDt:u._scrollMetrics.dt,contentLength:o}),u._hasWarned.perf=!0),u._scrollMetrics={contentLength:o,dt:p,dOffset:h,offset:l,timestamp:s,velocity:f,visibleLength:n},u._updateViewableItems(u.props.data),u.props&&(u._maybeCallOnEndReached(),0!==f&&u._fillRateHelper.activate(),u._computeBlankness(),u._scheduleCellsToRenderUpdate())},u._onScrollBeginDrag=function(t){u._nestedChildLists.forEach(function(s){s.ref&&s.ref._onScrollBeginDrag(t)}),u._viewabilityTuples.forEach(function(t){t.viewabilityHelper.recordInteraction()}),u._hasInteracted=!0,u.props.onScrollBeginDrag&&u.props.onScrollBeginDrag(t)},u._onScrollEndDrag=function(t){var s=t.nativeEvent.velocity;s&&(u._scrollMetrics.velocity=u._selectOffset(s)),u._computeBlankness(),u.props.onScrollEndDrag&&u.props.onScrollEndDrag(t)},u._onMomentumScrollEnd=function(t){u._scrollMetrics.velocity=0,u._computeBlankness(),u.props.onMomentumScrollEnd&&u.props.onMomentumScrollEnd(t)},u._updateCellsToRender=function(){var t=u.props,s=t.data,n=t.getItemCount,o=t.onEndReachedThreshold,l=u._isVirtualizationDisabled();u._updateViewableItems(s),s&&u.setState(function(t){var h;if(l){var c=u._scrollMetrics,p=c.contentLength,f=c.offset,_=c.visibleLength,v=p-_-f0)for(var y=h.first,C=h.last,L=y;L<=C;L++){var S=u._indicesToKeys.get(L),b=S&&u._cellKeysToChildListKeys.get(S);if(b){var M=!1,x=b,k=Array.isArray(x),E=0;for(x=k?x:x["function"==typeof Symbol&&"function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var I;if(k){if(E>=x.length)break;I=x[E++]}else{if((E=x.next()).done)break;I=E.value}var w=I,T=u._nestedChildLists.get(w);if(T&&T.ref&&T.ref.hasMore()){M=!0;break}}if(M){h.last=L;break}}}return h})},u._createViewToken=function(t,s){var n=u.props,o=n.data,l=n.getItem,h=n.keyExtractor,c=l(o,t);return{index:t,item:c,key:h(c,t),isViewable:s}},u._getFrameMetricsApprox=function(t){var s=u._getFrameMetrics(t);if(s&&s.index===t)return s;var n=u.props.getItemLayout;return I(!n,'Should not have to estimate frames when a measurement metrics function is provided'),{length:u._averageCellLength,offset:u._averageCellLength*t}},u._getFrameMetrics=function(t){var s=u.props,n=s.data,o=s.getItem,l=s.getItemCount,h=s.getItemLayout,c=s.keyExtractor;I(l(n)>t,'Tried to get frame for out of range index '+t);var p=o(n,t),f=p&&u._frames[c(p,t)];return f&&f.index===t||h&&(f=h(n,t)),f},I(!t.onScroll||!t.onScroll.__isNative,"Components based on VirtualizedList must be wrapped with Animated.createAnimatedComponent to support native onScroll events with useNativeDriver"),I(t.windowSize>0,'VirtualizedList: The windowSize prop must be present and set to a value greater than 0.'),u._fillRateHelper=new _(u._getFrameMetrics),u._updateCellsToRenderBatcher=new f(u._updateCellsToRender,u.props.updateCellsBatchingPeriod),u.props.viewabilityConfigCallbackPairs?u._viewabilityTuples=u.props.viewabilityConfigCallbackPairs.map(function(t){return{viewabilityHelper:new k(t.viewabilityConfig),onViewableItemsChanged:t.onViewableItemsChanged}}):u.props.onViewableItemsChanged&&u._viewabilityTuples.push({viewabilityHelper:new k(u.props.viewabilityConfig),onViewableItemsChanged:u.props.onViewableItemsChanged});var v={first:u.props.initialScrollIndex||0,last:Math.min(u.props.getItemCount(u.props.data),(u.props.initialScrollIndex||0)+u.props.initialNumToRender)-1};if(u._isNestedWithSameOrientation()){var C=u.context.virtualizedList.getNestedChildState(u.props.listKey||u._getCellKey());C&&(v=C,u.state=C,u._frames=C.frames)}return u.state=v,u}return u(z,v),p(z,[{key:"scrollToEnd",value:function(t){var s=!t||t.animated,n=this.props.getItemCount(this.props.data)-1,o=this._getFrameMetricsApprox(n),l=Math.max(0,o.offset+o.length+this._footerLength-this._scrollMetrics.visibleLength);this._scrollRef.scrollTo(this.props.horizontal?{x:l,animated:s}:{y:l,animated:s})}},{key:"scrollToIndex",value:function(t){var s=this.props,n=s.data,o=s.horizontal,l=s.getItemCount,h=s.getItemLayout,c=s.onScrollToIndexFailed,p=t.animated,u=t.index,f=t.viewOffset,_=t.viewPosition;if(I(u>=0&&uthis._highestMeasuredFrameIndex)return I(!!c,"scrollToIndex should be used in conjunction with getItemLayout or onScrollToIndexFailed, otherwise there is no way to know the location of offscreen indices or handle failures."),void c({averageItemLength:this._averageCellLength,highestMeasuredFrameIndex:this._highestMeasuredFrameIndex,index:u});var v=this._getFrameMetricsApprox(u),y=Math.max(0,v.offset-(_||0)*(this._scrollMetrics.visibleLength-v.length))-(f||0);this._scrollRef.scrollTo(o?{x:y,animated:p}:{y:y,animated:p})}},{key:"scrollToItem",value:function(t){for(var s=t.item,o=this.props,l=o.data,h=o.getItem,c=(0,o.getItemCount)(l),p=0;p0){w=!1,T='';var E=f?'width':'height',I=this.props.initialScrollIndex?-1:this.props.initialNumToRender-1,R=this.state,z=R.first,K=R.last;this._pushCells(C,S,L,0,I,v);var A=Math.max(I+1,z);if(!_&&z>I+1){var O=!1;if(L.size>0)for(var P=c?1:0,V=A-1;V>I;V--)if(L.has(V+P)){var D=this._getFrameMetricsApprox(I),H=this._getFrameMetricsApprox(V),B=H.offset-D.offset;C.push(y.createElement(x,{key:"$sticky_lead",style:t({},E,B)})),this._pushCells(C,S,L,V,V,v);var U=this._getFrameMetricsApprox(z).offset-(H.offset+H.length);C.push(y.createElement(x,{key:"$sticky_trail",style:t({},E,U)})),O=!0;break}if(!O){var W=this._getFrameMetricsApprox(I),$=this._getFrameMetricsApprox(z).offset-(W.offset+W.length);C.push(y.createElement(x,{key:"$lead_spacer",style:t({},E,$)}))}}if(this._pushCells(C,S,L,A,K,v),!this._hasWarned.keys&&w&&(console.warn("VirtualizedList: missing keys for items, make sure to specify a key property on each item or provide a custom keyExtractor.",T),this._hasWarned.keys=!0),!_&&K=p.length)break;_=p[f++]}else{if((f=p.next()).done)break;_=f.value}var v=_,y=this._nestedChildLists.get(v);y&&y.ref&&y.ref.measureLayoutRelativeToContainingList()}}this._computeBlankness()}},{key:"measureLayoutRelativeToContainingList",value:function(){var t=this;try{M.measureLayout(C.findNodeHandle(this),C.findNodeHandle(this.context.virtualizedList.getOutermostParentListRef()),function(t){console.warn("VirtualizedList: Encountered an error while measuring a list's offset from its containing VirtualizedList.")},function(s,n,o,l){t._offsetFromParentVirtualizedList=t._selectOffset({x:s,y:n}),t._scrollMetrics.contentLength=t._selectLength({width:o,height:l});var h=t._convertParentScrollMetrics(t.context.virtualizedList.getScrollMetrics());t._scrollMetrics.visibleLength=h.visibleLength,t._scrollMetrics.offset=h.offset})}catch(t){console.warn('measureLayoutRelativeToContainingList threw an error',t.stack)}}},{key:"_renderDebugOverlay",value:function(){for(var t=this._scrollMetrics.visibleLength/this._scrollMetrics.contentLength,s=[],o=this.props.getItemCount(this.props.data),l=0;l0){var _=l-this._getFrameMetricsApprox(s).offset;u=u||_<0||c<-2&&_2&&v0&&void 0!==arguments[0]?arguments[0]:{abort:!1};this._taskHandle&&(this._taskHandle.cancel(),t.abort||this._callback(),this._taskHandle=null)}},{key:"schedule",value:function(){var t=this;if(!this._taskHandle){var n=setTimeout(function(){t._taskHandle=l.runAfterInteractions(function(){t._taskHandle=null,t._callback()})},this._delay);this._taskHandle={cancel:function(){return clearTimeout(n)}}}}}]),s})();m.exports=s},240,[19,20,199]); __d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=r(d[2]),l=r(d[3]),_=r(d[4]),h=function t(){s(this,t),this.any_blank_count=0,this.any_blank_ms=0,this.any_blank_speed_sum=0,this.mostly_blank_count=0,this.mostly_blank_ms=0,this.pixels_blank=0,this.pixels_sampled=0,this.pixels_scrolled=0,this.total_time_spent=0,this.sample_count=0},o=[],u=10,f=null,c=(function(){function c(t){s(this,c),this._anyBlankStartTime=null,this._enabled=!1,this._info=new h,this._mostlyBlankStartTime=null,this._samplesStartTime=null,this._getFrameMetrics=t,this._enabled=(f||0)>Math.random(),this._resetData()}return n(c,null,[{key:"addListener",value:function(t){return _(null!==f,'Call `FillRateHelper.setSampleRate` before `addListener`.'),o.push(t),{remove:function(){o=o.filter(function(n){return t!==n})}}}},{key:"setSampleRate",value:function(t){f=t}},{key:"setMinSampleCount",value:function(t){u=t}}]),n(c,[{key:"activate",value:function(){this._enabled&&null==this._samplesStartTime&&(this._samplesStartTime=l())}},{key:"deactivateAndFlush",value:function(){if(this._enabled){var n=this._samplesStartTime;if(null!=n)if(this._info.sample_count0&&(k=Math.min(u,Math.max(0,p.offset-h)));for(var b=0,v=n.last,S=this._getFrameMetrics(v);v>=n.first&&(!S||!S.inLayout);)S=this._getFrameMetrics(v),v--;if(S&&v0?(this._anyBlankStartTime=c,this._info.any_blank_speed_sum+=f,this._info.any_blank_count++,this._info.pixels_blank+=T,B>.5&&(this._mostlyBlankStartTime=c,this._info.mostly_blank_count++)):(f<.01||Math.abs(_)<1)&&this.deactivateAndFlush(),B}},{key:"enabled",value:function(){return this._enabled}},{key:"_resetData",value:function(){this._anyBlankStartTime=null,this._info=new h,this._mostlyBlankStartTime=null,this._samplesStartTime=null}}]),c})();m.exports=c},241,[43,20,19,100,103]); __d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),s=r(d[2]),o=r(d[3]),l=r(d[4]),h=(function(){function h(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{viewAreaCoveragePercentThreshold:0};s(this,h),this._hasInteracted=!1,this._timers=new Set,this._viewableIndices=[],this._viewableItems=new Map,this._config=t}return o(h,[{key:"dispose",value:function(){this._timers.forEach(clearTimeout)}},{key:"computeViewableItems",value:function(t,n,s,o,h){var c=this._config,f=c.itemVisiblePercentThreshold,v=c.viewAreaCoveragePercentThreshold,_=null!=v,b=_?v:f;l(null!=b&&null!=f!=(null!=v),'Must set exactly one of itemVisiblePercentThreshold or viewAreaCoveragePercentThreshold');var y=[];if(0===t)return y;var w=-1,I=h||{first:0,last:t-1},p=I.first,k=I.last;l(k0)w=S,u(_,b,A,V,s,T.length)&&y.push(S);else if(w>=0)break}}return y}},{key:"onUpdate",value:function(t,n,s,o,l,h,u){var c=this;if((!this._config.waitForInteraction||this._hasInteracted)&&0!==t&&o(0)){var f=[];if(t&&(f=this.computeViewableItems(t,n,s,o,u)),this._viewableIndices.length!==f.length||!this._viewableIndices.every(function(t,n){return t===f[n]}))if(this._viewableIndices=f,this._config.minimumViewTime){var v=setTimeout(function(){c._timers.delete(v),c._onUpdateSync(f,h,l)},this._config.minimumViewTime);this._timers.add(v)}else this._onUpdateSync(f,h,l)}}},{key:"resetViewableIndices",value:function(){this._viewableIndices=[]}},{key:"recordInteraction",value:function(){this._hasInteracted=!0}},{key:"_onUpdateSync",value:function(s,o,l){var h=this;s=s.filter(function(t){return h._viewableIndices.includes(t)});var u=this._viewableItems,c=new Map(s.map(function(t){var n=l(t,!0);return[n.key,n]})),f=[],v=c,_=Array.isArray(v),b=0;for(v=_?v:v["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var y;if(_){if(b>=v.length)break;y=v[b++]}else{if((b=v.next()).done)break;y=b.value}var w=n(y,2),I=w[0],p=w[1];u.has(I)||f.push(p)}var k=u,S=Array.isArray(k),T=0;for(k=S?k:k["function"==typeof Symbol?Symbol.iterator:"@@iterator"]();;){var A;if(S){if(T>=k.length)break;A=k[T++]}else{if((T=k.next()).done)break;A=T.value}var V=n(A,2),x=V[0],M=V[1];c.has(x)||f.push(t({},M,{isViewable:!1}))}f.length>0&&(this._viewableItems=c,o({viewableItems:Array.from(c.values()),changed:f,viewabilityConfig:this._config}))}}]),h})();function u(t,n,s,o,l,h){if(f(s,o,l))return!0;var u=c(s,o,l);return 100*(t?u/l:u/h)>=n}function c(t,n,s){var o=Math.min(n,s)-Math.max(t,0);return Math.max(0,o)}function f(t,n,s){return t>=0&&n<=s&&n>t}m.exports=h},242,[43,9,19,20,3]); @@ -257,7 +257,7 @@ __d(function(g,r,i,a,m,e,d){'use strict';var o=r(d[0]),n=(r(d[1]),r(d[2])),s=r(d __d(function(g,r,i,a,m,e,d){var n={};r(d[0]).isTV,n=r(d[1]),m.exports=n},246,[41,247]); __d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),l={isTVSelectable:t.bool,hasTVPreferredFocus:t.bool,tvParallaxProperties:t.object,tvParallaxShiftDistanceX:t.number,tvParallaxShiftDistanceY:t.number,tvParallaxTiltAngle:t.number,tvParallaxMagnification:t.number};m.exports=l},247,[60]); __d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),s=r(d[1]),n=r(d[2]),o=r(d[3]),p=r(d[4]),f=r(d[5]),c=r(d[6]),l=r(d[7]),u=(r(d[8]),r(d[9])),R=(r(d[10]),r(d[11])),h=c({},R.defaultProps,{stickySectionHeadersEnabled:!1}),L=(function(c){function h(){var t,n;s(this,h);for(var f=arguments.length,c=new Array(f),l=0;l=l.data.length+1)n-=l.data.length+1;else return-1===n?{section:l,key:p+':header',index:null,header:!0,trailingSection:this.props.sections[s+1]}:n===l.data.length?{section:l,key:p+':footer',index:null,header:!1,trailingSection:this.props.sections[s+1]}:{section:l,key:p+':'+(l.keyExtractor||o)(l.data[n],n),index:n,leadingItem:l.data[n-1],leadingSection:this.props.sections[s-1],trailingItem:l.data[n+1],trailingSection:this.props.sections[s+1]}}}},{key:"_getSeparatorComponent",value:function(t,n){if(!(n=n||this._subExtractor(t)))return null;var o=n.section.ItemSeparatorComponent||this.props.ItemSeparatorComponent,s=this.props.SectionSeparatorComponent,l=t===this.state.childProps.getItemCount()-1,p=n.index===n.section.data.length-1;return s&&p?s:!o||p||l?null:o}}]),I})(h.PureComponent);I.defaultProps=n({},S.defaultProps,{data:[]});var _=(function(t){function u(){var t,p;o(this,u);for(var c=arguments.length,h=new Array(c),f=0;f=l.data.length+1)n-=l.data.length+1;else return-1===n?{section:l,key:p+':header',index:null,header:!0,trailingSection:this.props.sections[s+1]}:n===l.data.length?{section:l,key:p+':footer',index:null,header:!1,trailingSection:this.props.sections[s+1]}:{section:l,key:p+':'+(l.keyExtractor||o)(l.data[n],n),index:n,leadingItem:l.data[n-1],leadingSection:this.props.sections[s-1],trailingItem:l.data[n+1],trailingSection:this.props.sections[s+1]}}}},{key:"_getSeparatorComponent",value:function(t,n){if(!(n=n||this._subExtractor(t)))return null;var o=n.section.ItemSeparatorComponent||this.props.ItemSeparatorComponent,s=this.props.SectionSeparatorComponent,l=t===this.state.childProps.getItemCount()-1,p=n.index===n.section.data.length-1;return s&&p?s:!o||p||l?null:o}}]),I})(h.PureComponent);I.defaultProps=n({},S.defaultProps,{data:[]});var _=(function(t){function p(){var t,c;o(this,p);for(var u=arguments.length,h=new Array(u),f=0;f. Was '+n.type.displayName),u.createElement(n.type,o)})},l._onPageScroll=function(n){l.props.onPageScroll&&l.props.onPageScroll(n),'on-drag'===l.props.keyboardDismissMode&&w()},l._onPageScrollStateChanged=function(n){l.props.onPageScrollStateChanged&&l.props.onPageScrollStateChanged(n.nativeEvent.pageScrollState)},l._onPageSelected=function(n){l.props.onPageSelected&&l.props.onPageSelected(n)},l.setPage=function(n){f.dispatchViewManagerCommand(S.findNodeHandle(h(h(l))),f.AndroidViewPager.Commands.setPage,[n])},l.setPageWithoutAnimation=function(n){f.dispatchViewManagerCommand(S.findNodeHandle(h(h(l))),f.AndroidViewPager.Commands.setPageWithoutAnimation,[n])},l}return c(y,P),l(y,[{key:"componentDidMount",value:function(){null!=this.props.initialPage&&this.setPageWithoutAnimation(this.props.initialPage)}},{key:"render",value:function(){return u.createElement(v,n({},this.props,{ref:C,style:this.props.style,onPageScroll:this._onPageScroll,onPageScrollStateChanged:this._onPageScrollStateChanged,onPageSelected:this._onPageSelected,children:this._childrenWithOverridenStyle()}))}}]),y})(u.Component);b.propTypes=t({},y,{initialPage:P.number,onPageScroll:P.func,onPageScrollStateChanged:P.func,onPageSelected:P.func,pageMargin:P.number,keyboardDismissMode:P.oneOf(['none','on-drag']),scrollEnabled:P.bool,peekEnabled:P.bool}),m.exports=b},294,[8,43,19,20,27,30,33,29,45,60,77,40,245,231,147]); +__d(function(g,r,i,a,m,e,d){'use strict';var n=r(d[0]),t=r(d[1]),o=r(d[2]),l=r(d[3]),s=r(d[4]),p=r(d[5]),c=r(d[6]),h=r(d[7]),u=r(d[8]),P=r(d[9]),S=r(d[10]),f=r(d[11]),y=r(d[12]),w=r(d[13]),v=r(d[14])('AndroidViewPager'),C='viewPager',b=(function(P){function y(){var n,l;o(this,y);for(var h=arguments.length,P=new Array(h),v=0;v. Was '+n.type.displayName),u.createElement(n.type,o)})},l._onPageScroll=function(n){l.props.onPageScroll&&l.props.onPageScroll(n),'on-drag'===l.props.keyboardDismissMode&&w()},l._onPageScrollStateChanged=function(n){l.props.onPageScrollStateChanged&&l.props.onPageScrollStateChanged(n.nativeEvent.pageScrollState)},l._onPageSelected=function(n){l.props.onPageSelected&&l.props.onPageSelected(n)},l.setPage=function(n){f.dispatchViewManagerCommand(S.findNodeHandle(c(l)),f.AndroidViewPager.Commands.setPage,[n])},l.setPageWithoutAnimation=function(n){f.dispatchViewManagerCommand(S.findNodeHandle(c(l)),f.AndroidViewPager.Commands.setPageWithoutAnimation,[n])},l}return h(y,P),l(y,[{key:"componentDidMount",value:function(){null!=this.props.initialPage&&this.setPageWithoutAnimation(this.props.initialPage)}},{key:"render",value:function(){return u.createElement(v,n({},this.props,{ref:C,style:this.props.style,onPageScroll:this._onPageScroll,onPageScrollStateChanged:this._onPageScrollStateChanged,onPageSelected:this._onPageSelected,children:this._childrenWithOverridenStyle()}))}}]),y})(u.Component);b.propTypes=t({},y,{initialPage:P.number,onPageScroll:P.func,onPageScrollStateChanged:P.func,onPageSelected:P.func,pageMargin:P.number,keyboardDismissMode:P.oneOf(['none','on-drag']),scrollEnabled:P.bool,peekEnabled:P.bool}),m.exports=b},294,[8,43,19,20,27,30,29,33,45,60,77,40,245,231,147]); __d(function(g,r,i,a,m,e,d){'use strict';var t=r(d[0]),n=r(d[1]),o=r(d[2]),s=r(d[3]),l=r(d[4]),p=r(d[5]),c=r(d[6]),h=r(d[7]),u=r(d[8]),b=r(d[9]),v=r(d[10]),f=r(d[11]),w=r(d[12]),E=r(d[13]),S=r(d[14]),C=r(d[15]),y=r(d[16]),L=r(d[17]),R=r(d[18]),F=r(d[19]),V=r(d[20]),I='webview',W=R({IDLE:null,LOADING:null,ERROR:null}),D=function(){return b.createElement(S,{style:P.loadingView},b.createElement(u,{style:P.loadingProgressBar}))},A=(function(t){function h(){var t,n;o(this,h);for(var s=arguments.length,c=new Array(s),u=0;u2)throw"Can only show 2 buttons for Android dialog.";var u=l[0]?l[0].text:null,f=l[1]?l[1].text:null;n.showDialog(o,t,u,f,function(o){l[o].onPress&&l[o].onPress()},function(o){throw o})}}}m.exports={Alert:t}},330,[331,2]); __d(function(g,r,i,a,m,e,d){m.exports=function(t){if(t&&t.__esModule)return t;var o={};if(null!=t)for(var n in t)if(Object.prototype.hasOwnProperty.call(t,n)){var c=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(t,n):{};c.get||c.set?Object.defineProperty(o,n,c):o[n]=t[n]}return o.default=t,o}},331,[]); __d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=r(d[1]);function s(n){return["GET","HEAD","POST","PUT","DELETE","TRACE","OPTIONS","CONNECT","PATCH"][n]}m.exports={request:function(o,c,u,p){var f,h,l,C;return n.async(function(P){for(;;)switch(P.prev=P.next){case 0:return"function"==typeof u&&(p=u,u=null),f={Accept:"application/json","Content-Type":"application/json","X-CodePush-Plugin-Name":t.name,"X-CodePush-Plugin-Version":t.version,"X-CodePush-SDK-Version":t.dependencies["code-push"]},u&&"object"==typeof u&&(u=JSON.stringify(u)),P.prev=3,P.next=6,n.awrap(fetch(c,{method:s(o),headers:f,body:u}));case 6:return h=P.sent,l=h.status,P.next=10,n.awrap(h.text());case 10:C=P.sent,p(null,{statusCode:l,body:C}),P.next=17;break;case 14:P.prev=14,P.t0=P.catch(3),p(P.t0);case 17:case"end":return P.stop()}},null,this,[[3,14]])}}},332,[129,333]); -__d(function(e,t,s,i,o,n,r){o.exports={name:"react-native-code-push",version:"5.5.1",description:"React Native plugin for the CodePush service",main:"CodePush.js",typings:"typings/react-native-code-push.d.ts",homepage:"https://microsoft.github.io/code-push",keywords:["react-native","code","push"],author:"Microsoft Corporation",license:"MIT",repository:{type:"git",url:"https://github.com/Microsoft/react-native-code-push"},dependencies:{"code-push":"2.0.6",glob:"^5.0.15","hoist-non-react-statics":"^2.3.1",inquirer:"1.1.2",plist:"3.0.1",xcode:"1.0.0"},devDependencies:{archiver:"latest","body-parser":"latest","code-push-plugin-testing-framework":"file:./code-push-plugin-testing-framework",del:"latest",express:"latest","gulp-insert":"latest","gulp-tslint":"latest","gulp-typescript":"2.12.2",mkdirp:"latest",q:"^1.4.1","run-sequence":"latest",tslint:"^4.3.1",typescript:"^2.1.5"},rnpm:{android:{packageInstance:"new CodePush(${androidDeploymentKey}, getApplicationContext(), BuildConfig.DEBUG)"},ios:{sharedLibraries:["libz"]},params:[{type:"input",name:"androidDeploymentKey",message:"What is your CodePush deployment key for Android (hit to ignore)"}],commands:{postlink:"node node_modules/react-native-code-push/scripts/postlink/run"}}}},333,[]); +__d(function(e,t,s,i,o,r,n){o.exports={_args:[["react-native-code-push@5.5.2","/Users/mistik/Desktop/projects/esteem-mobile"]],_from:"react-native-code-push@5.5.2",_id:"react-native-code-push@5.5.2",_inBundle:!1,_integrity:"sha512-hBXGhB6DcVqwnN4jWHcCCUBt3GMoC/FZ+ys/mlHMaR9696oKbv5ioW8mAFHMCtPRpdlt2Keo6MoLBMHigTSzug==",_location:"/react-native-code-push",_phantomChildren:{"cli-width":"2.2.0","code-point-at":"1.1.0","escape-string-regexp":"1.0.5","exit-hook":"1.1.1",extend:"3.0.2","has-ansi":"2.0.0",lodash:"4.17.11","number-is-nan":"1.0.1","object-assign":"4.1.1","os-tmpdir":"1.0.2",pegjs:"0.10.0","pinkie-promise":"2.0.1","run-async":"2.3.0",rx:"4.1.0","simple-plist":"0.2.1","spawn-sync":"1.0.15",through:"2.3.8"},_requested:{type:"version",registry:!0,raw:"react-native-code-push@5.5.2",name:"react-native-code-push",escapedName:"react-native-code-push",rawSpec:"5.5.2",saveSpec:null,fetchSpec:"5.5.2"},_requiredBy:["/"],_resolved:"https://registry.npmjs.org/react-native-code-push/-/react-native-code-push-5.5.2.tgz",_spec:"5.5.2",_where:"/Users/mistik/Desktop/projects/esteem-mobile",author:{name:"Microsoft Corporation"},bugs:{url:"https://github.com/Microsoft/react-native-code-push/issues"},dependencies:{"code-push":"2.0.6",glob:"^5.0.15","hoist-non-react-statics":"^2.3.1",inquirer:"1.1.2",plist:"3.0.1",xcode:"1.0.0"},description:"React Native plugin for the CodePush service",devDependencies:{archiver:"latest","body-parser":"latest","code-push-plugin-testing-framework":"file:./code-push-plugin-testing-framework",del:"latest",express:"latest","gulp-insert":"latest","gulp-tslint":"latest","gulp-typescript":"2.12.2",mkdirp:"latest",q:"^1.4.1","run-sequence":"latest",tslint:"^4.3.1",typescript:"^2.1.5"},homepage:"https://microsoft.github.io/code-push",keywords:["react-native","code","push"],license:"MIT",main:"CodePush.js",name:"react-native-code-push",repository:{type:"git",url:"git+https://github.com/Microsoft/react-native-code-push.git"},rnpm:{android:{packageInstance:"new CodePush(${androidDeploymentKey}, getApplicationContext(), BuildConfig.DEBUG)"},ios:{sharedLibraries:["libz"]},params:[{type:"input",name:"androidDeploymentKey",message:"What is your CodePush deployment key for Android (hit to ignore)"}],commands:{postlink:"node node_modules/react-native-code-push/scripts/postlink/run"}},typings:"typings/react-native-code-push.d.ts",version:"5.5.2"}},333,[]); __d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]),s=r(d[2]).NativeModules.CodePush,u=(function(){var u=!0,c=!1,l=[];function o(){var p,f=arguments;return t.async(function(h){for(;;)switch(h.prev=h.next){case 0:if(p=f.length>0&&void 0!==f[0]&&f[0],!c){h.next=6;break}n("Restart request queued until the current restart is completed"),l.push(p),h.next=19;break;case 6:if(u){h.next=11;break}n("Restart request queued until restarts are re-allowed"),l.push(p),h.next=19;break;case 11:return c=!0,h.next=14,t.awrap(s.restartApp(p));case 14:if(!h.sent){h.next=17;break}return n("Restarting app"),h.abrupt("return");case 17:c=!1,l.length&&o(l.shift(1));case 19:case"end":return h.stop()}},null,this)}return{allow:function(){n("Re-allowing restarts"),u=!0,l.length&&(n("Executing pending restart"),o(l.shift(1)))},clearPendingRestart:function(){l=[]},disallow:function(){n("Disallowing restarts"),u=!1},restartApp:o}})();m.exports=u},334,[129,335,2]); __d(function(g,r,i,a,m,e,d){m.exports=function(o){console.log("[CodePush] "+o)}},335,[]); __d(function(g,r,i,a,m,e,d){'use strict';var t={childContextTypes:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},p=Object.defineProperty,n=Object.getOwnPropertyNames,c=Object.getOwnPropertySymbols,s=Object.getOwnPropertyDescriptor,y=Object.getPrototypeOf,f=y&&y(Object);m.exports=function l(O,u,P){if('string'!=typeof u){if(f){var b=y(u);b&&b!==f&&l(O,b,P)}var v=n(u);c&&(v=v.concat(c(u)));for(var j=0;j0&&void 0!==p[0]?p[0]:t.codePushInstallModeOnNextRestart,u=p.length>1&&void 0!==p[1]?p[1]:0,c=p.length>2?p[2]:void 0,f=this,h=(0,s.default)({},f),w.next=7,n.default.awrap(t.installUpdate(h,o,u));case 7:c&&c(),o==t.codePushInstallModeImmediate?l.default.restartApp(!1):(l.default.clearPendingRestart(),f.isPending=!0);case 9:case"end":return w.stop()}},null,this)},isPending:!1};return{local:f,remote:function(l){return{download:function(h){var p,w,v,P;return n.default.async(function(x){for(;;)switch(x.prev=x.next){case 0:if(this.downloadUrl){x.next=2;break}throw new Error("Cannot download an update without a download url");case 2:return h&&(w=new u.NativeEventEmitter(t),p=w.addListener("CodePushDownloadProgress",h)),x.prev=3,v=(0,s.default)({},this),Object.keys(v).forEach(function(t){return'function'==typeof v[t]&&delete v[t]}),x.next=8,n.default.awrap(t.downloadUpdate(v,!!h));case 8:return P=x.sent,l&&l(this).catch(function(t){(0,c.default)("Report download status failed: "+t)}),x.abrupt("return",(0,o.default)({},P,f));case 11:return x.prev=11,p&&p.remove(),x.finish(11);case 14:case"end":return x.stop()}},null,this,[[3,,11,14]])},isPending:!1}}}}},337,[1,129,43,8,2,334,335]); __d(function(e,m,t,a,n,d,i){n.exports={name:"eSteem",displayName:"eSteem"}},338,[]); -__d(function(g,r,i,a,m,e,d){r(d[0]),r(d[1]),r(d[2]),r(d[3]),r(d[4]),r(d[5]),r(d[6]),r(d[7]),r(d[8]),r(d[9]),r(d[10]),r(d[11]),r(d[12]),r(d[13]),r(d[14]),m.exports=r(d[15])},339,[340,665,503,668,667,669,672,673,674,675,677,678,679,681,682,347]); -__d(function(g,r,i,a,m,e,d){r(d[0]),r(d[1]),r(d[2]),r(d[3]),r(d[4]),r(d[5]),r(d[6]),r(d[7]),r(d[8]),r(d[9]),r(d[10]),r(d[11]),r(d[12]),r(d[13]),r(d[14]),r(d[15]),r(d[16]),r(d[17]),r(d[18]),r(d[19]),r(d[20]),r(d[21]),r(d[22]),r(d[23]),r(d[24]),r(d[25]),r(d[26]),r(d[27]),r(d[28]),r(d[29]),r(d[30]),r(d[31]),r(d[32]),r(d[33]),r(d[34]),r(d[35]),r(d[36]),r(d[37]),r(d[38]),r(d[39]),r(d[40]),r(d[41]),r(d[42]),r(d[43]),r(d[44]),r(d[45]),r(d[46]),r(d[47]),r(d[48]),r(d[49]),r(d[50]),r(d[51]),r(d[52]),r(d[53]),r(d[54]),r(d[55]),r(d[56]),r(d[57]),r(d[58]),r(d[59]),r(d[60]),r(d[61]),r(d[62]),r(d[63]),r(d[64]),r(d[65]),r(d[66]),r(d[67]),r(d[68]),r(d[69]),r(d[70]),r(d[71]),r(d[72]),r(d[73]),r(d[74]),r(d[75]),r(d[76]),r(d[77]),r(d[78]),r(d[79]),r(d[80]),r(d[81]),r(d[82]),r(d[83]),r(d[84]),r(d[85]),r(d[86]),r(d[87]),r(d[88]),r(d[89]),r(d[90]),r(d[91]),r(d[92]),r(d[93]),r(d[94]),r(d[95]),r(d[96]),r(d[97]),r(d[98]),r(d[99]),r(d[100]),r(d[101]),r(d[102]),r(d[103]),r(d[104]),r(d[105]),r(d[106]),r(d[107]),r(d[108]),r(d[109]),r(d[110]),r(d[111]),r(d[112]),r(d[113]),r(d[114]),r(d[115]),r(d[116]),r(d[117]),r(d[118]),r(d[119]),r(d[120]),r(d[121]),r(d[122]),r(d[123]),r(d[124]),r(d[125]),r(d[126]),r(d[127]),r(d[128]),r(d[129]),r(d[130]),r(d[131]),r(d[132]),r(d[133]),r(d[134]),r(d[135]),r(d[136]),r(d[137]),r(d[138]),r(d[139]),r(d[140]),r(d[141]),r(d[142]),r(d[143]),r(d[144]),r(d[145]),r(d[146]),r(d[147]),r(d[148]),r(d[149]),r(d[150]),r(d[151]),r(d[152]),r(d[153]),r(d[154]),r(d[155]),r(d[156]),r(d[157]),r(d[158]),r(d[159]),r(d[160]),r(d[161]),r(d[162]),r(d[163]),r(d[164]),r(d[165]),r(d[166]),r(d[167]),r(d[168]),r(d[169]),r(d[170]),r(d[171]),r(d[172]),r(d[173]),r(d[174]),r(d[175]),r(d[176]),r(d[177]),r(d[178]),r(d[179]),r(d[180]),r(d[181]),r(d[182]),r(d[183]),r(d[184]),r(d[185]),r(d[186]),r(d[187]),r(d[188]),r(d[189]),r(d[190]),r(d[191]),r(d[192]),r(d[193]),r(d[194]),r(d[195]),r(d[196]),m.exports=r(d[197])},340,[341,389,390,391,392,394,397,398,399,400,401,402,403,404,405,407,409,411,413,416,417,418,422,424,426,429,430,431,432,434,435,436,437,438,439,440,442,443,444,446,447,448,450,452,453,454,455,456,457,458,459,460,461,462,463,464,469,470,474,475,476,477,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,495,496,498,499,505,506,508,509,510,514,515,516,517,518,520,521,522,523,526,528,529,530,532,534,536,538,539,540,544,545,546,548,558,562,563,565,566,570,571,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,593,594,595,596,597,599,600,601,603,604,605,606,607,608,609,610,612,613,615,616,617,618,621,622,624,625,626,627,629,630,631,632,633,634,635,636,637,638,640,641,642,643,644,645,646,647,648,649,650,652,653,654,655,656,657,658,659,660,661,662,663,664,347]); -__d(function(g,r,i,a,m,e,d){'use strict';g=r(d[0]);var t=r(d[1]),n=r(d[2]),o=r(d[3]),f=r(d[4]),u=r(d[5]).KEY,s=r(d[6]),c=r(d[7]),p=r(d[8]),l=r(d[9]),y=r(d[10]),h=r(d[11]),b=r(d[12]),v=r(d[13]),S=r(d[14]),O=r(d[15]),P=r(d[16]),w=r(d[17]),E=r(d[18]),F=r(d[19]),N=r(d[20]),_=r(d[21]),j=r(d[22]),J=r(d[23]),k=r(d[24]),I=j.f,T=J.f,C=_.f,M=g.Symbol,D=g.JSON,G=D&&D.stringify,K=y('_hidden'),Q=y('toPrimitive'),W={}.propertyIsEnumerable,Y=c('symbol-registry'),q=c('symbols'),x=c('op-symbols'),z=Object.prototype,A='function'==typeof M,B=g.QObject,H=!B||!B.prototype||!B.prototype.findChild,L=n&&s(function(){return 7!=N(T({},'a',{get:function(){return T(this,'a',{value:7}).a}})).a})?function(t,n,o){var f=I(z,n);f&&delete z[n],T(t,n,o),f&&t!==z&&T(z,n,f)}:T,R=function(t){var n=q[t]=N(M.prototype);return n._k=t,n},U=A&&'symbol'==typeof M.iterator?function(t){return'symbol'==typeof t}:function(t){return t instanceof M},V=function(n,o,f){return n===z&&V(x,o,f),O(n),o=E(o,!0),O(f),t(q,o)?(f.enumerable?(t(n,K)&&n[K][o]&&(n[K][o]=!1),f=N(f,{enumerable:F(0,!1)})):(t(n,K)||T(n,K,F(1,{})),n[K][o]=!0),L(n,o,f)):T(n,o,f)},X=function(t,n){O(t);for(var o,f=v(n=w(n)),u=0,s=f.length;s>u;)V(t,o=f[u++],n[o]);return t},Z=function(n){var o=W.call(this,n=E(n,!0));return!(this===z&&t(q,n)&&!t(x,n))&&(!(o||!t(this,n)||!t(q,n)||t(this,K)&&this[K][n])||o)},$=function(n,o){if(n=w(n),o=E(o,!0),n!==z||!t(q,o)||t(x,o)){var f=I(n,o);return!f||!t(q,o)||t(n,K)&&n[K][o]||(f.enumerable=!0),f}},tt=function(n){for(var o,f=C(w(n)),s=[],c=0;f.length>c;)t(q,o=f[c++])||o==K||o==u||s.push(o);return s},rt=function(n){for(var o,f=n===z,u=C(f?x:w(n)),s=[],c=0;u.length>c;)!t(q,o=u[c++])||f&&!t(z,o)||s.push(q[o]);return s};A||(f((M=function(){if(this instanceof M)throw TypeError('Symbol is not a constructor!');var o=l(arguments.length>0?arguments[0]:void 0);return n&&H&&L(z,o,{configurable:!0,set:function n(f){this===z&&n.call(x,f),t(this,K)&&t(this[K],o)&&(this[K][o]=!1),L(this,o,F(1,f))}}),R(o)}).prototype,'toString',function(){return this._k}),j.f=$,J.f=V,r(d[25]).f=_.f=tt,r(d[26]).f=Z,r(d[27]).f=rt,n&&!r(d[28])&&f(z,'propertyIsEnumerable',Z,!0),h.f=function(t){return R(y(t))}),o(o.G+o.W+o.F*!A,{Symbol:M});for(var nt='hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'.split(','),et=0;nt.length>et;)y(nt[et++]);for(var ot=k(y.store),it=0;ot.length>it;)b(ot[it++]);o(o.S+o.F*!A,'Symbol',{for:function(n){return t(Y,n+='')?Y[n]:Y[n]=M(n)},keyFor:function(t){if(!U(t))throw TypeError(t+' is not a symbol!');for(var n in Y)if(Y[n]===t)return n},useSetter:function(){H=!0},useSimple:function(){H=!1}}),o(o.S+o.F*!A,'Object',{create:function(t,n){return void 0===n?N(t):X(N(t),n)},defineProperty:V,defineProperties:X,getOwnPropertyDescriptor:$,getOwnPropertyNames:tt,getOwnPropertySymbols:rt}),D&&o(o.S+o.F*(!A||s(function(){var t=M();return'[null]'!=G([t])||'{}'!=G({a:t})||'{}'!=G(Object(t))})),'JSON',{stringify:function(t){for(var n,o,f=[t],u=1;arguments.length>u;)f.push(arguments[u++]);if(o=n=f[1],(P(n)||void 0!==t)&&!U(t))return S(n)||(n=function(t,n){if('function'==typeof o&&(n=o.call(this,t,n)),!U(n))return n}),f[1]=n,G.apply(D,f)}}),M.prototype[Q]||r(d[29])(M.prototype,Q,M.prototype.valueOf),p(M,'Symbol'),p(Math,'Math',!0),p(g.JSON,'JSON',!0)},341,[342,343,344,346,356,360,345,361,363,357,364,365,366,367,382,350,351,370,354,355,383,386,388,349,368,387,381,380,362,348]); +__d(function(g,r,i,a,m,e,d){r(d[0]),r(d[1]),r(d[2]),r(d[3]),r(d[4]),r(d[5]),r(d[6]),r(d[7]),r(d[8]),r(d[9]),r(d[10]),r(d[11]),r(d[12]),r(d[13]),r(d[14]),m.exports=r(d[15])},339,[340,666,504,669,668,670,673,674,675,676,678,679,680,682,683,347]); +__d(function(g,r,i,a,m,e,d){r(d[0]),r(d[1]),r(d[2]),r(d[3]),r(d[4]),r(d[5]),r(d[6]),r(d[7]),r(d[8]),r(d[9]),r(d[10]),r(d[11]),r(d[12]),r(d[13]),r(d[14]),r(d[15]),r(d[16]),r(d[17]),r(d[18]),r(d[19]),r(d[20]),r(d[21]),r(d[22]),r(d[23]),r(d[24]),r(d[25]),r(d[26]),r(d[27]),r(d[28]),r(d[29]),r(d[30]),r(d[31]),r(d[32]),r(d[33]),r(d[34]),r(d[35]),r(d[36]),r(d[37]),r(d[38]),r(d[39]),r(d[40]),r(d[41]),r(d[42]),r(d[43]),r(d[44]),r(d[45]),r(d[46]),r(d[47]),r(d[48]),r(d[49]),r(d[50]),r(d[51]),r(d[52]),r(d[53]),r(d[54]),r(d[55]),r(d[56]),r(d[57]),r(d[58]),r(d[59]),r(d[60]),r(d[61]),r(d[62]),r(d[63]),r(d[64]),r(d[65]),r(d[66]),r(d[67]),r(d[68]),r(d[69]),r(d[70]),r(d[71]),r(d[72]),r(d[73]),r(d[74]),r(d[75]),r(d[76]),r(d[77]),r(d[78]),r(d[79]),r(d[80]),r(d[81]),r(d[82]),r(d[83]),r(d[84]),r(d[85]),r(d[86]),r(d[87]),r(d[88]),r(d[89]),r(d[90]),r(d[91]),r(d[92]),r(d[93]),r(d[94]),r(d[95]),r(d[96]),r(d[97]),r(d[98]),r(d[99]),r(d[100]),r(d[101]),r(d[102]),r(d[103]),r(d[104]),r(d[105]),r(d[106]),r(d[107]),r(d[108]),r(d[109]),r(d[110]),r(d[111]),r(d[112]),r(d[113]),r(d[114]),r(d[115]),r(d[116]),r(d[117]),r(d[118]),r(d[119]),r(d[120]),r(d[121]),r(d[122]),r(d[123]),r(d[124]),r(d[125]),r(d[126]),r(d[127]),r(d[128]),r(d[129]),r(d[130]),r(d[131]),r(d[132]),r(d[133]),r(d[134]),r(d[135]),r(d[136]),r(d[137]),r(d[138]),r(d[139]),r(d[140]),r(d[141]),r(d[142]),r(d[143]),r(d[144]),r(d[145]),r(d[146]),r(d[147]),r(d[148]),r(d[149]),r(d[150]),r(d[151]),r(d[152]),r(d[153]),r(d[154]),r(d[155]),r(d[156]),r(d[157]),r(d[158]),r(d[159]),r(d[160]),r(d[161]),r(d[162]),r(d[163]),r(d[164]),r(d[165]),r(d[166]),r(d[167]),r(d[168]),r(d[169]),r(d[170]),r(d[171]),r(d[172]),r(d[173]),r(d[174]),r(d[175]),r(d[176]),r(d[177]),r(d[178]),r(d[179]),r(d[180]),r(d[181]),r(d[182]),r(d[183]),r(d[184]),r(d[185]),r(d[186]),r(d[187]),r(d[188]),r(d[189]),r(d[190]),r(d[191]),r(d[192]),r(d[193]),r(d[194]),r(d[195]),r(d[196]),m.exports=r(d[197])},340,[341,390,391,392,393,395,398,399,400,401,402,403,404,405,406,408,410,412,414,417,418,419,423,425,427,430,431,432,433,435,436,437,438,439,440,441,443,444,445,447,448,449,451,453,454,455,456,457,458,459,460,461,462,463,464,465,470,471,475,476,477,478,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,496,497,499,500,506,507,509,510,511,515,516,517,518,519,521,522,523,524,527,529,530,531,533,535,537,539,540,541,545,546,547,549,559,563,564,566,567,571,572,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,594,595,596,597,598,600,601,602,604,605,606,607,608,609,610,611,613,614,616,617,618,619,622,623,625,626,627,628,630,631,632,633,634,635,636,637,638,639,641,642,643,644,645,646,647,648,649,650,651,653,654,655,656,657,658,659,660,661,662,663,664,665,347]); +__d(function(g,r,i,a,m,e,d){'use strict';g=r(d[0]);var t=r(d[1]),n=r(d[2]),o=r(d[3]),f=r(d[4]),u=r(d[5]).KEY,s=r(d[6]),c=r(d[7]),p=r(d[8]),l=r(d[9]),y=r(d[10]),h=r(d[11]),b=r(d[12]),v=r(d[13]),S=r(d[14]),O=r(d[15]),P=r(d[16]),w=r(d[17]),E=r(d[18]),F=r(d[19]),N=r(d[20]),_=r(d[21]),j=r(d[22]),J=r(d[23]),k=r(d[24]),I=j.f,T=J.f,C=_.f,M=g.Symbol,D=g.JSON,G=D&&D.stringify,K=y('_hidden'),Q=y('toPrimitive'),W={}.propertyIsEnumerable,Y=c('symbol-registry'),q=c('symbols'),x=c('op-symbols'),z=Object.prototype,A='function'==typeof M,B=g.QObject,H=!B||!B.prototype||!B.prototype.findChild,L=n&&s(function(){return 7!=N(T({},'a',{get:function(){return T(this,'a',{value:7}).a}})).a})?function(t,n,o){var f=I(z,n);f&&delete z[n],T(t,n,o),f&&t!==z&&T(z,n,f)}:T,R=function(t){var n=q[t]=N(M.prototype);return n._k=t,n},U=A&&'symbol'==typeof M.iterator?function(t){return'symbol'==typeof t}:function(t){return t instanceof M},V=function(n,o,f){return n===z&&V(x,o,f),O(n),o=E(o,!0),O(f),t(q,o)?(f.enumerable?(t(n,K)&&n[K][o]&&(n[K][o]=!1),f=N(f,{enumerable:F(0,!1)})):(t(n,K)||T(n,K,F(1,{})),n[K][o]=!0),L(n,o,f)):T(n,o,f)},X=function(t,n){O(t);for(var o,f=v(n=w(n)),u=0,s=f.length;s>u;)V(t,o=f[u++],n[o]);return t},Z=function(n){var o=W.call(this,n=E(n,!0));return!(this===z&&t(q,n)&&!t(x,n))&&(!(o||!t(this,n)||!t(q,n)||t(this,K)&&this[K][n])||o)},$=function(n,o){if(n=w(n),o=E(o,!0),n!==z||!t(q,o)||t(x,o)){var f=I(n,o);return!f||!t(q,o)||t(n,K)&&n[K][o]||(f.enumerable=!0),f}},tt=function(n){for(var o,f=C(w(n)),s=[],c=0;f.length>c;)t(q,o=f[c++])||o==K||o==u||s.push(o);return s},rt=function(n){for(var o,f=n===z,u=C(f?x:w(n)),s=[],c=0;u.length>c;)!t(q,o=u[c++])||f&&!t(z,o)||s.push(q[o]);return s};A||(f((M=function(){if(this instanceof M)throw TypeError('Symbol is not a constructor!');var o=l(arguments.length>0?arguments[0]:void 0);return n&&H&&L(z,o,{configurable:!0,set:function n(f){this===z&&n.call(x,f),t(this,K)&&t(this[K],o)&&(this[K][o]=!1),L(this,o,F(1,f))}}),R(o)}).prototype,'toString',function(){return this._k}),j.f=$,J.f=V,r(d[25]).f=_.f=tt,r(d[26]).f=Z,r(d[27]).f=rt,n&&!r(d[28])&&f(z,'propertyIsEnumerable',Z,!0),h.f=function(t){return R(y(t))}),o(o.G+o.W+o.F*!A,{Symbol:M});for(var nt='hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'.split(','),et=0;nt.length>et;)y(nt[et++]);for(var ot=k(y.store),it=0;ot.length>it;)b(ot[it++]);o(o.S+o.F*!A,'Symbol',{for:function(n){return t(Y,n+='')?Y[n]:Y[n]=M(n)},keyFor:function(t){if(!U(t))throw TypeError(t+' is not a symbol!');for(var n in Y)if(Y[n]===t)return n},useSetter:function(){H=!0},useSimple:function(){H=!1}}),o(o.S+o.F*!A,'Object',{create:function(t,n){return void 0===n?N(t):X(N(t),n)},defineProperty:V,defineProperties:X,getOwnPropertyDescriptor:$,getOwnPropertyNames:tt,getOwnPropertySymbols:rt}),D&&o(o.S+o.F*(!A||s(function(){var t=M();return'[null]'!=G([t])||'{}'!=G({a:t})||'{}'!=G(Object(t))})),'JSON',{stringify:function(t){for(var n,o,f=[t],u=1;arguments.length>u;)f.push(arguments[u++]);if(o=n=f[1],(P(n)||void 0!==t)&&!U(t))return S(n)||(n=function(t,n){if('function'==typeof o&&(n=o.call(this,t,n)),!U(n))return n}),f[1]=n,G.apply(D,f)}}),M.prototype[Q]||r(d[29])(M.prototype,Q,M.prototype.valueOf),p(M,'Symbol'),p(Math,'Math',!0),p(g.JSON,'JSON',!0)},341,[342,343,344,346,356,363,345,359,364,357,365,366,367,368,383,350,351,371,354,355,384,387,389,349,369,388,382,381,360,348]); __d(function(g,r,i,a,m,e,d){g=m.exports='undefined'!=typeof window&&window.Math==Math?window:'undefined'!=typeof self&&self.Math==Math?self:Function('return this')();'number'==typeof __g&&(__g=g)},342,[]); __d(function(g,r,i,a,m,e,d){var n={}.hasOwnProperty;m.exports=function(t,o){return n.call(t,o)}},343,[]); __d(function(g,r,i,a,m,e,d){m.exports=!r(d[0])(function(){return 7!=Object.defineProperty({},'a',{get:function(){return 7}}).a})},344,[345]); __d(function(g,r,i,a,m,e,d){m.exports=function(t){try{return!!t()}catch(t){return!0}}},345,[]); -__d(function(g,r,i,a,m,e,d){g=r(d[0]);var o=r(d[1]),t=r(d[2]),n=r(d[3]),p=r(d[4]),c=function c(f,u,y){var v,F,l,B,G=f&c.F,P=f&c.G,S=f&c.P,U=f&c.B,_=P?g:f&c.S?g[u]||(g[u]={}):(g[u]||{}).prototype,s=P?o:o[u]||(o[u]={}),x=s.prototype||(s.prototype={});for(v in P&&(y=u),y)l=((F=!G&&_&&void 0!==_[v])?_:y)[v],B=U&&F?p(l,g):S&&'function'==typeof l?p(Function.call,l):l,_&&n(_,v,l,f&c.U),s[v]!=l&&t(s,v,B),S&&x[v]!=l&&(x[v]=l)};g.core=o,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,m.exports=c},346,[342,347,348,356,358]); -__d(function(g,r,i,a,m,e,d){var _=m.exports={version:'2.6.0'};'number'==typeof __e&&(__e=_)},347,[]); +__d(function(g,r,i,a,m,e,d){g=r(d[0]);var o=r(d[1]),t=r(d[2]),n=r(d[3]),p=r(d[4]),c=function c(f,u,y){var v,F,l,B,G=f&c.F,P=f&c.G,S=f&c.P,U=f&c.B,_=P?g:f&c.S?g[u]||(g[u]={}):(g[u]||{}).prototype,s=P?o:o[u]||(o[u]={}),x=s.prototype||(s.prototype={});for(v in P&&(y=u),y)l=((F=!G&&_&&void 0!==_[v])?_:y)[v],B=U&&F?p(l,g):S&&'function'==typeof l?p(Function.call,l):l,_&&n(_,v,l,f&c.U),s[v]!=l&&t(s,v,B),S&&x[v]!=l&&(x[v]=l)};g.core=o,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,m.exports=c},346,[342,347,348,356,361]); +__d(function(g,r,i,a,m,e,d){var _=m.exports={version:'2.6.5'};'number'==typeof __e&&(__e=_)},347,[]); __d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=r(d[1]);m.exports=r(d[2])?function(u,f,o){return n.f(u,f,t(1,o))}:function(n,t,u){return n[t]=u,n}},348,[349,355,344]); __d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]),o=r(d[2]),c=Object.defineProperty;e.f=r(d[3])?Object.defineProperty:function(f,u,p){if(t(f),u=o(u,!0),t(p),n)try{return c(f,u,p)}catch(t){}if('get'in p||'set'in p)throw TypeError('Accessors not supported!');return'value'in p&&(f[u]=p.value),f}},349,[350,352,354,344]); __d(function(g,r,i,a,m,e,d){var n=r(d[0]);m.exports=function(o){if(!n(o))throw TypeError(o+' is not an object!');return o}},350,[351]); @@ -364,1373 +364,1369 @@ __d(function(g,r,i,a,m,e,d){m.exports=!r(d[0])&&!r(d[1])(function(){return 7!=Ob __d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]).document,c=t(n)&&t(n.createElement);m.exports=function(t){return c?n.createElement(t):{}}},353,[351,342]); __d(function(g,r,i,a,m,e,d){var t=r(d[0]);m.exports=function(n,o){if(!t(n))return n;var f,u;if(o&&'function'==typeof(f=n.toString)&&!t(u=f.call(n)))return u;if('function'==typeof(f=n.valueOf)&&!t(u=f.call(n)))return u;if(!o&&'function'==typeof(f=n.toString)&&!t(u=f.call(n)))return u;throw TypeError("Can't convert object to primitive value")}},354,[351]); __d(function(g,r,i,a,m,e,d){m.exports=function(n,u){return{enumerable:!(1&n),configurable:!(2&n),writable:!(4&n),value:u}}},355,[]); -__d(function(g,r,i,a,m,e,d){g=r(d[0]);var t=r(d[1]),n=r(d[2]),o=r(d[3])('src'),c=Function.toString,u=(''+c).split("toString");r(d[4]).inspectSource=function(t){return c.call(t)},(m.exports=function(c,f,p,s){var l='function'==typeof p;l&&(n(p,'name')||t(p,'name',f)),c[f]!==p&&(l&&(n(p,o)||t(p,o,c[f]?''+c[f]:u.join(String(f)))),c===g?c[f]=p:s?c[f]?c[f]=p:t(c,f,p):(delete c[f],t(c,f,p)))})(Function.prototype,"toString",function(){return'function'==typeof this&&this[o]||c.call(this)})},356,[342,348,343,357,347]); +__d(function(g,r,i,a,m,e,d){g=r(d[0]);var t=r(d[1]),n=r(d[2]),o=r(d[3])('src'),c=r(d[4]),u=(''+c).split("toString");r(d[5]).inspectSource=function(t){return c.call(t)},(m.exports=function(c,f,p,s){var l='function'==typeof p;l&&(n(p,'name')||t(p,'name',f)),c[f]!==p&&(l&&(n(p,o)||t(p,o,c[f]?''+c[f]:u.join(String(f)))),c===g?c[f]=p:s?c[f]?c[f]=p:t(c,f,p):(delete c[f],t(c,f,p)))})(Function.prototype,"toString",function(){return'function'==typeof this&&this[o]||c.call(this)})},356,[342,348,343,357,358,347]); __d(function(g,r,i,a,m,e,d){var n=0,o=Math.random();m.exports=function(t){return'Symbol('.concat(void 0===t?'':t,')_',(++n+o).toString(36))}},357,[]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0]);m.exports=function(t,u,c){if(n(t),void 0===u)return t;switch(c){case 1:return function(n){return t.call(u,n)};case 2:return function(n,c){return t.call(u,n,c)};case 3:return function(n,c,o){return t.call(u,n,c,o)}}return function(){return t.apply(u,arguments)}}},358,[359]); -__d(function(g,r,i,a,m,e,d){m.exports=function(n){if('function'!=typeof n)throw TypeError(n+' is not a function!');return n}},359,[]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0])('meta'),t=r(d[1]),f=r(d[2]),u=r(d[3]).f,o=0,c=Object.isExtensible||function(){return!0},s=!r(d[4])(function(){return c(Object.preventExtensions({}))}),E=function(t){u(t,n,{value:{i:'O'+ ++o,w:{}}})},b=m.exports={KEY:n,NEED:!1,fastKey:function(u,o){if(!t(u))return'symbol'==typeof u?u:('string'==typeof u?'S':'P')+u;if(!f(u,n)){if(!c(u))return'F';if(!o)return'E';E(u)}return u[n].i},getWeak:function(t,u){if(!f(t,n)){if(!c(t))return!0;if(!u)return!1;E(t)}return t[n].w},onFreeze:function(t){return s&&b.NEED&&c(t)&&!f(t,n)&&E(t),t}}},360,[357,351,343,349,345]); -__d(function(g,r,i,a,m,e,d){var o=r(d[0]),s=(g=r(d[1]))["__core-js_shared__"]||(g["__core-js_shared__"]={});(m.exports=function(o,_){return s[o]||(s[o]=void 0!==_?_:{})})('versions',[]).push({version:o.version,mode:r(d[2])?'pure':'global',copyright:'\xa9 2018 Denis Pushkarev (zloirock.ru)'})},361,[347,342,362]); -__d(function(g,r,i,a,m,e,d){m.exports=!1},362,[]); -__d(function(g,r,i,a,m,e,d){var o=r(d[0]).f,t=r(d[1]),n=r(d[2])('toStringTag');m.exports=function(f,u,c){f&&!t(f=c?f:f.prototype,n)&&o(f,n,{configurable:!0,value:u})}},363,[349,343,364]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0])('wks'),o=r(d[1]),t=r(d[2]).Symbol,f='function'==typeof t;(m.exports=function(u){return n[u]||(n[u]=f&&("function"==typeof t?t[u]:"@@name")||(f?t:o)('Symbol.'+u))}).store=n},364,[361,357,342]); -__d(function(g,r,i,a,m,e,d){e.f=r(d[0])},365,[364]); -__d(function(g,r,i,a,m,e,d){g=r(d[0]);var o=r(d[1]),n=r(d[2]),f=r(d[3]),l=r(d[4]).f;m.exports=function(t){var b=o.Symbol||(o.Symbol=n?{}:g.Symbol||{});'_'==t.charAt(0)||t in b||l(b,t,{value:f.f(t)})}},366,[342,347,362,365,349]); -__d(function(g,r,i,a,m,e,d){var f=r(d[0]),n=r(d[1]),t=r(d[2]);m.exports=function(o){var u=f(o),c=n.f;if(c)for(var l,v=c(o),h=t.f,p=0;v.length>p;)h.call(o,l=v[p++])&&u.push(l);return u}},367,[368,380,381]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=r(d[1]);m.exports=Object.keys||function(c){return n(c,t)}},368,[369,379]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0]),o=r(d[1]),t=r(d[2])(!1),u=r(d[3])('IE_PROTO');m.exports=function(f,h){var p,s=o(f),_=0,c=[];for(p in s)p!=u&&n(s,p)&&c.push(p);for(;h.length>_;)n(s,p=h[_++])&&(~t(c,p)||c.push(p));return c}},369,[343,370,374,378]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=r(d[1]);m.exports=function(o){return n(t(o))}},370,[371,373]); -__d(function(g,r,i,a,m,e,d){var t=r(d[0]);m.exports=Object('z').propertyIsEnumerable(0)?Object:function(n){return'String'==t(n)?n.split(''):Object(n)}},371,[372]); -__d(function(g,r,i,a,m,e,d){var n={}.toString;m.exports=function(t){return n.call(t).slice(8,-1)}},372,[]); -__d(function(g,r,i,a,m,e,d){m.exports=function(o){if(void 0==o)throw TypeError("Can't call method on "+o);return o}},373,[]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=r(d[1]),f=r(d[2]);m.exports=function(u){return function(o,c,l){var s,v=n(o),_=t(v.length),h=f(l,_);if(u&&c!=c){for(;_>h;)if((s=v[h++])!=s)return!0}else for(;_>h;h++)if((u||h in v)&&v[h]===c)return u||h||0;return!u&&-1}}},374,[370,375,377]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=Math.min;m.exports=function(o){return o>0?t(n(o),9007199254740991):0}},375,[376]); -__d(function(g,r,i,a,m,e,d){var t=Math.ceil,n=Math.floor;m.exports=function(o){return isNaN(o=+o)?0:(o>0?n:t)(o)}},376,[]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0]),t=Math.max,o=Math.min;m.exports=function(u,c){return(u=n(u))<0?t(u+c,0):o(u,c)}},377,[376]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0])('keys'),t=r(d[1]);m.exports=function(o){return n[o]||(n[o]=t(o))}},378,[361,357]); -__d(function(g,r,i,a,m,e,d){m.exports='constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'.split(',')},379,[]); -__d(function(g,r,i,a,m,e,d){e.f=Object.getOwnPropertySymbols},380,[]); -__d(function(g,r,i,a,m,e,d){e.f={}.propertyIsEnumerable},381,[]); -__d(function(g,r,i,a,m,e,d){var n=r(d[0]);m.exports=Array.isArray||function(t){return'Array'==n(t)}},382,[372]); -__d(function(g,r,i,a,m,e,d){var t=r(d[0]),n=r(d[1]),o=r(d[2]),c=r(d[3])('IE_PROTO'),p=function(){},l=function(){var t,n=r(d[4])('iframe'),c=o.length;for(n.style.display='none',r(d[5]).appendChild(n),n.src='javascript:',(t=n.contentWindow.document).open(),t.write("