From d9db83f72c7e53898ef8feb01bce6d85162dc888 Mon Sep 17 00:00:00 2001 From: u-e Date: Mon, 7 Jan 2019 11:24:28 +0300 Subject: [PATCH 01/75] updated couple things && alerts handled for transition --- src/components/comments/view/commentsView.js | 4 +- .../view/commentsDisplayView.js | 11 +--- src/components/postCard/view/postCardView.js | 4 -- .../container/postDropdownContainer.js | 23 ++++++-- .../postElements/body/view/postBodyView.js | 24 +++++--- src/config/locales/en-US.json | 10 +++- src/config/locales/ru-RU.json | 10 +++- src/config/locales/tr-TR.json | 11 +++- .../container/applicationContainer.js | 4 +- .../editor/container/editorContainer.js | 41 +++++++++----- .../pinCode/container/pinCodeContainer.js | 56 +++++++++++-------- 11 files changed, 128 insertions(+), 70 deletions(-) diff --git a/src/components/comments/view/commentsView.js b/src/components/comments/view/commentsView.js index 668de5f06..c65210d3c 100644 --- a/src/components/comments/view/commentsView.js +++ b/src/components/comments/view/commentsView.js @@ -74,14 +74,16 @@ class CommentsView extends PureComponent { handleOnReplyPress && handleOnReplyPress(item)} iconType="MaterialIcons" /> {currentAccountUsername === item.author && ( { - // alert('This feature not read. Thanks for understanding.'); - }; + _handleOnDropdownSelect = () => {}; render() { const { author, permlink, commentCount, fetchPost, } = this.props; - //TODO: implement comments filtering + // TODO: implement comments filtering return ( {commentCount > 0 && ( diff --git a/src/components/postCard/view/postCardView.js b/src/components/postCard/view/postCardView.js index 1d12be28f..7c7fbd83b 100644 --- a/src/components/postCard/view/postCardView.js +++ b/src/components/postCard/view/postCardView.js @@ -50,10 +50,6 @@ class PostCard extends Component { handleOnVotersPress(content.active_votes); }; - _handleOnDropdownSelect = () => { - // alert('This feature implementing...'); - }; - render() { const { content, isHideImage, fetchPost } = this.props; const _image = content && content.image diff --git a/src/components/postDropdown/container/postDropdownContainer.js b/src/components/postDropdown/container/postDropdownContainer.js index 7bf73800e..6ef1d6690 100644 --- a/src/components/postDropdown/container/postDropdownContainer.js +++ b/src/components/postDropdown/container/postDropdownContainer.js @@ -60,18 +60,33 @@ class PostDropdownContainer extends PureComponent { _reblog = () => { const { - currentAccount, content, isLoggedIn, pinCode, + currentAccount, content, isLoggedIn, pinCode, intl, } = this.props; if (isLoggedIn) { reblog(currentAccount, pinCode, content.author, content.permlink) .then(() => { - Alert.alert('Success', 'Rebloged!'); + Alert.alert( + intl.formatMessage({ + id: 'alert.success', + }), + intl.formatMessage({ + id: 'alert.success_rebloged', + }), + ); }) .catch((error) => { if (error.jse_shortmsg && String(error.jse_shortmsg).indexOf('has already reblogged')) { - Alert.alert('You already reblogged!'); + Alert.alert( + intl.formatMessage({ + id: 'alert.already_rebloged', + }), + ); } else { - Alert.alert('Failed!'); + Alert.alert( + intl.formatMessage({ + id: 'alert.fail', + }), + ); } }); } diff --git a/src/components/postElements/body/view/postBodyView.js b/src/components/postElements/body/view/postBodyView.js index 8b1c3dd8a..255a4978f 100644 --- a/src/components/postElements/body/view/postBodyView.js +++ b/src/components/postElements/body/view/postBodyView.js @@ -1,6 +1,8 @@ import React, { PureComponent, Fragment } from 'react'; -import { Dimensions, Linking } from 'react-native'; +import { Dimensions, Linking, Alert } from 'react-native'; import { withNavigation } from 'react-navigation'; +import { injectIntl } from 'react-intl'; + import HTML from 'react-native-html-renderer'; // Styles @@ -23,20 +25,26 @@ class PostBody extends PureComponent { // Component Functions _handleOnLinkPress = (evt, href, hrefatr) => { - const { handleOnUserPress, handleOnPostPress } = this.props; + const { handleOnUserPress, handleOnPostPress, intl } = this.props; if (hrefatr.class === 'markdown-author-link') { - !handleOnUserPress ? this._handleOnUserPress(href) : handleOnUserPress(href); + if (!handleOnUserPress) { + this._handleOnUserPress(href); + } else { + handleOnUserPress(href); + } } else if (hrefatr.class === 'markdown-post-link') { - !handleOnPostPress - ? this._handleOnPostPress(href, hrefatr.data_author) - : handleOnPostPress(href); + if (!handleOnPostPress) { + this._handleOnPostPress(href, hrefatr.data_author); + } else { + handleOnPostPress(href); + } } else { Linking.canOpenURL(href).then((supported) => { if (supported) { Linking.openURL(href); } else { - alert(`Field to open: ${href}`); + Alert.alert(intl.formatMessage({ id: 'alert.failed_to_open' })); } }); } @@ -112,4 +120,4 @@ class PostBody extends PureComponent { } } -export default withNavigation(PostBody); +export default injectIntl(withNavigation(PostBody)); diff --git a/src/config/locales/en-US.json b/src/config/locales/en-US.json index 709946c61..1ffd84387 100644 --- a/src/config/locales/en-US.json +++ b/src/config/locales/en-US.json @@ -123,7 +123,15 @@ }, "alert": { "success": "Success!", - "allRead": "Marked all notification as read" + "allRead": "Marked all notification as read", + "fail": "Fail!", + "success_shared": "Your post sccesfully shared", + "permission_denied": "Permission Denied", + "permission_text": "Please, go to phone Settings and change eSteem app permissions.", + "success_rebloged": "Rebloged!", + "already_rebloged": "You already reblogged!", + "warning": "Warning", + "invalid_pincode": "Invalid pin code, please check and try again." }, "post": { "reblog_alert": "Are you sure you want to reblog?", diff --git a/src/config/locales/ru-RU.json b/src/config/locales/ru-RU.json index f074dbe9f..b280bf06d 100644 --- a/src/config/locales/ru-RU.json +++ b/src/config/locales/ru-RU.json @@ -123,7 +123,15 @@ }, "alert": { "success": "Успех!", - "allRead": "Всё прочтено" + "allRead": "Всё прочтено", + "fail": "Fail!", + "success_shared": "Your post sccesfully shared", + "permission_denied": "Permission Denied", + "permission_text": "Please, go to phone Settings and change eSteem app permissions.", + "success_rebloged": "Rebloged!", + "already_rebloged": "You already reblogged!", + "warning": "Warning", + "invalid_pincode": "Invalid pin code, please check and try again." }, "post": { "reblog_alert": "Вы уверены, что хотите сделать репост?", diff --git a/src/config/locales/tr-TR.json b/src/config/locales/tr-TR.json index 0857ccbe0..6563df97a 100644 --- a/src/config/locales/tr-TR.json +++ b/src/config/locales/tr-TR.json @@ -125,7 +125,16 @@ }, "alert": { "success": "Başarılı!", - "allRead": "Tüm bildirimler okundu" + "allRead": "Tüm bildirimler okundu", + "fail": "Basarisiz!", + "success_shared": "Post'un basariyla paylasildi.", + "permission_denied": "Izin Alinamadi", + "permission_text": "Lutfen, telefon ayarlarina gidin ve eSteem'in izinlerini degistirin.", + "success_rebloged": "Reblog yaptiniz!", + "already_rebloged": "Zaten reblog yapmissiniz.", + "failed_to_open": "Failed to open", + "warning": "Warning", + "invalid_pincode": "Invalid pin code, please check and try again." }, "post": { "reblog_alert": "Reblog yapma istediginize emin misiniz?", diff --git a/src/screens/application/container/applicationContainer.js b/src/screens/application/container/applicationContainer.js index 8a286078f..deb6f1aa7 100644 --- a/src/screens/application/container/applicationContainer.js +++ b/src/screens/application/container/applicationContainer.js @@ -1,5 +1,5 @@ import React, { Component } from 'react'; -import { Platform, BackHandler } from 'react-native'; +import { Platform, BackHandler, Alert } from 'react-native'; import { connect } from 'react-redux'; import { addLocaleData } from 'react-intl'; import Config from 'react-native-config'; @@ -131,7 +131,7 @@ class ApplicationContainer extends Component { this._setPushToken(accountData.name); }) .catch((err) => { - alert(err); + Alert.alert(err); }); } diff --git a/src/screens/editor/container/editorContainer.js b/src/screens/editor/container/editorContainer.js index d3afc2d2e..043ee6756 100644 --- a/src/screens/editor/container/editorContainer.js +++ b/src/screens/editor/container/editorContainer.js @@ -1,5 +1,6 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; +import { injectIntl } from 'react-intl'; import { Alert } from 'react-native'; import ImagePicker from 'react-native-image-crop-picker'; @@ -133,12 +134,7 @@ class EditorContainer extends Component { _handleOpenImagePicker = () => { ImagePicker.openPicker({ - // width: 300, - // height: 400, - // cropping: true, - // writeTempFile: true, includeBase64: true, - // multiple: true, }) .then((image) => { this._handleMediaOnSelected(image); @@ -150,9 +146,6 @@ class EditorContainer extends Component { _handleOpenCamera = () => { ImagePicker.openCamera({ - // width: 300, - // height: 400, - // cropping: true, includeBase64: true, }) .then((image) => { @@ -176,6 +169,8 @@ class EditorContainer extends Component { }; _uploadImage = (media) => { + const { intl } = this.props; + const file = { uri: media.path, type: media.mime, @@ -190,18 +185,25 @@ class EditorContainer extends Component { } }) .catch((error) => { - alert(error); + Alert.alert(intl.formatMessage({ + id: 'alert.fail', + }), error); this.setState({ isUploading: false }); }); }; _handleMediaOnSelectFailure = (error) => { + const { intl } = this.props; this.setState({ isCameraOrPickerOpen: false }); if (error.code === 'E_PERMISSION_MISSING') { Alert.alert( - 'Permission Denied', - 'Please, go to phone Settings and change eSteem app permissions.', + intl.formatMessage({ + id: 'alert.permission_denied', + }), + intl.formatMessage({ + id: 'alert.permission_text', + }), ); } }; @@ -234,7 +236,7 @@ class EditorContainer extends Component { }; _submitPost = async (fields) => { - const { navigation, currentAccount, pinCode } = this.props; + const { navigation, currentAccount, pinCode, intl } = this.props; if (currentAccount) { this.setState({ isPostSending: true }); @@ -260,7 +262,12 @@ class EditorContainer extends Component { 0, ) .then((result) => { - Alert.alert('Success!', 'Your post succesfully shared'); + Alert.alert(intl.formatMessage({ + id: 'alert.success', + }), intl.formatMessage({ + id: 'alert.success_shared', + })); + navigation.navigate({ routeName: ROUTES.SCREENS.POST, params: { @@ -353,7 +360,11 @@ class EditorContainer extends Component { }; _handleSubmitFailure = (error) => { - Alert.alert('Fail!', `Opps! there is a problem${error}`); + const { intl } = this.props; + + Alert.alert(intl.formatMessage({ + id: 'alert.fail', + }), error); this.setState({ isPostSending: false }); }; @@ -432,4 +443,4 @@ const mapStateToProps = state => ({ currentAccount: state.account.currentAccount, }); -export default connect(mapStateToProps)(EditorContainer); +export default connect(mapStateToProps)(injectIntl(EditorContainer)); diff --git a/src/screens/pinCode/container/pinCodeContainer.js b/src/screens/pinCode/container/pinCodeContainer.js index fb0a40eb9..997bb8af8 100644 --- a/src/screens/pinCode/container/pinCodeContainer.js +++ b/src/screens/pinCode/container/pinCodeContainer.js @@ -12,7 +12,10 @@ import { } from '../../../providers/steem/auth'; import { closePinCodeModal } from '../../../redux/actions/applicationActions'; import { getExistUser, setExistUser, getUserDataWithUsername } from '../../../realm/realm'; -import { updateCurrentAccount, setPinCode as savePinCode } from '../../../redux/actions/accountAction'; +import { + updateCurrentAccount, + setPinCode as savePinCode, +} from '../../../redux/actions/accountAction'; import { getUser } from '../../../providers/steem/dsteem'; // Utils @@ -69,12 +72,7 @@ class PinCodeContainer extends Component { _resetPinCode = pin => new Promise((resolve, reject) => { const { - currentAccount, - dispatch, - accessToken, - navigateTo, - navigation, - intl, + currentAccount, dispatch, accessToken, navigateTo, navigation, intl, } = this.props; const { isOldPinVerified, oldPinCode } = this.state; @@ -114,7 +112,9 @@ class PinCodeContainer extends Component { resolve(); }) .catch((err) => { - Alert.alert('Warning', err.message); + Alert.alert(intl.formatMessage({ + id: 'alert.warning', + }), err.message); reject(err); }); } @@ -122,11 +122,7 @@ class PinCodeContainer extends Component { _setFirstPinCode = pin => new Promise((resolve) => { const { - currentAccount, - dispatch, - accessToken, - navigateTo, - navigation, + currentAccount, dispatch, accessToken, navigateTo, navigation, } = this.props; const pinData = { @@ -162,6 +158,7 @@ class PinCodeContainer extends Component { navigateTo, navigation, setWrappedComponentState, + intl, } = this.props; // If the user is exist, we are just checking to pin and navigating to home screen @@ -187,7 +184,9 @@ class PinCodeContainer extends Component { } }) .catch((err) => { - Alert.alert('Warning', err.message); + Alert.alert(intl.formatMessage({ + id: 'alert.warning', + }), err.message); reject(err); }); }); @@ -196,28 +195,34 @@ class PinCodeContainer extends Component { const { dispatch } = this.props; const encryptedPin = encryptKey(pin, Config.PIN_KEY); dispatch(savePinCode(encryptedPin)); - } + }; _setPinCode = async (pin, isReset) => { - const { - intl, currentAccount, applicationPinCode, - } = this.props; - const { - isExistUser, pinCode, - } = this.state; + const { intl, currentAccount, applicationPinCode } = this.props; + const { isExistUser, pinCode } = this.state; const realmData = getUserDataWithUsername(currentAccount.name); const userData = realmData[0]; // For exist users - if (isReset) { await this._resetPinCode(pin); return true; } + if (isReset) { + await this._resetPinCode(pin); + return true; + } if (isExistUser) { if (!userData.accessToken && !userData.masterKey && applicationPinCode) { const verifiedPin = decryptKey(applicationPinCode, Config.PIN_KEY); if (verifiedPin === pin) { await this._setFirstPinCode(pin); } else { - Alert.alert('Warning', 'Invalid pin code, please check and try again'); + Alert.alert( + intl.formatMessage({ + id: 'alert.warning', + }), + intl.formatMessage({ + id: 'alert.invalid_pincode', + }), + ); } } else { await this._verifyPinCode(pin); @@ -226,7 +231,10 @@ class PinCodeContainer extends Component { } // For new users - if (pinCode === pin) { await this._setFirstPinCode(pin); return true; } + if (pinCode === pin) { + await this._setFirstPinCode(pin); + return true; + } if (!pinCode) { // If the user is logging in for the first time, the user should set to pin From 597d2b972e7fe0595c269cfa91b390e842659789 Mon Sep 17 00:00:00 2001 From: u-e Date: Mon, 7 Jan 2019 11:32:00 +0300 Subject: [PATCH 02/75] updated turkish lang --- src/config/locales/tr-TR.json | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/config/locales/tr-TR.json b/src/config/locales/tr-TR.json index 6563df97a..6913a00d3 100644 --- a/src/config/locales/tr-TR.json +++ b/src/config/locales/tr-TR.json @@ -126,18 +126,21 @@ "alert": { "success": "Başarılı!", "allRead": "Tüm bildirimler okundu", - "fail": "Basarisiz!", - "success_shared": "Post'un basariyla paylasildi.", - "permission_denied": "Izin Alinamadi", - "permission_text": "Lutfen, telefon ayarlarina gidin ve eSteem'in izinlerini degistirin.", - "success_rebloged": "Reblog yaptiniz!", - "already_rebloged": "Zaten reblog yapmissiniz.", - "failed_to_open": "Failed to open", - "warning": "Warning", - "invalid_pincode": "Invalid pin code, please check and try again." + "fail": "Başarısız!", + "success_shared": "Post'un başarıyla paylaşıldı.", + "permission_denied": "Izin Alınamadı", + "permission_text": "Lütfen, telefon ayarlarına gidin ve eSteem'in izinlerini degistirin.", + "success_rebloged": "Reblog yaptınız!", + "already_rebloged": "Zaten reblog yapmışsınız.", + "failed_to_open": "Açılamadı.", + "warning": "Uyarı!", + "invalid_pincode": "Geçersiz pin kod, lutfen tekrar deneyin." }, "post": { "reblog_alert": "Reblog yapma istediginize emin misiniz?", "reblog_cancel": "Vazgeç" } } + +// Pick it +// ı ç ş ö Ç Ş ü From 301c8d29994c9d4549011e2894377ad100e58b42 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 10:42:28 +0200 Subject: [PATCH 03/75] typo fix --- src/config/locales/en-US.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config/locales/en-US.json b/src/config/locales/en-US.json index 1ffd84387..f270c68d8 100644 --- a/src/config/locales/en-US.json +++ b/src/config/locales/en-US.json @@ -123,13 +123,13 @@ }, "alert": { "success": "Success!", - "allRead": "Marked all notification as read", + "allRead": "Marked all notifications as read", "fail": "Fail!", - "success_shared": "Your post sccesfully shared", - "permission_denied": "Permission Denied", + "success_shared": "Your post succesfully shared", + "permission_denied": "Permission denied", "permission_text": "Please, go to phone Settings and change eSteem app permissions.", "success_rebloged": "Rebloged!", - "already_rebloged": "You already reblogged!", + "already_rebloged": "You have already reblogged!", "warning": "Warning", "invalid_pincode": "Invalid pin code, please check and try again." }, From fbbf054c9e0ba504936c03d5d8e1b8b1f08137d4 Mon Sep 17 00:00:00 2001 From: Fil Dunsky <32987666+fildunsky@users.noreply.github.com> Date: Mon, 7 Jan 2019 11:50:40 +0300 Subject: [PATCH 04/75] Update ru-RU.json --- src/config/locales/ru-RU.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/config/locales/ru-RU.json b/src/config/locales/ru-RU.json index b280bf06d..1a6e55616 100644 --- a/src/config/locales/ru-RU.json +++ b/src/config/locales/ru-RU.json @@ -124,14 +124,14 @@ "alert": { "success": "Успех!", "allRead": "Всё прочтено", - "fail": "Fail!", - "success_shared": "Your post sccesfully shared", - "permission_denied": "Permission Denied", - "permission_text": "Please, go to phone Settings and change eSteem app permissions.", - "success_rebloged": "Rebloged!", - "already_rebloged": "You already reblogged!", - "warning": "Warning", - "invalid_pincode": "Invalid pin code, please check and try again." + "fail": "Не вышло!", + "success_shared": "Успешно поделились постом!", + "permission_denied": "Доступ запрещён", + "permission_text": "Пожалуйста, откройте настройки телефона и измените разрешения для приложения eSteem.", + "success_rebloged": "Репостнуто!", + "already_rebloged": "Вы уже делали этот репост!", + "warning": "Внимание", + "invalid_pincode": "Не верный пин, пожалуйста, попробуйте снова." }, "post": { "reblog_alert": "Вы уверены, что хотите сделать репост?", From 4a35941347ad91a75dcf7aec20c34358c9862296 Mon Sep 17 00:00:00 2001 From: Mustafa Buyukcelebi Date: Mon, 7 Jan 2019 12:02:25 +0300 Subject: [PATCH 05/75] Fixed leaderboard file name error --- .../container/leaderboardContainer.js | 2 +- src/components/{leaderBoard => leaderboard}/index.js | 0 .../view/leaderboardStyles.js} | 0 .../leaderBoardView.js => leaderboard/view/leaderboardView.js} | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename src/components/{leaderBoard => leaderboard}/container/leaderboardContainer.js (95%) rename src/components/{leaderBoard => leaderboard}/index.js (100%) rename src/components/{leaderBoard/view/leaderBoardStyles.js => leaderboard/view/leaderboardStyles.js} (100%) rename src/components/{leaderBoard/view/leaderBoardView.js => leaderboard/view/leaderboardView.js} (100%) diff --git a/src/components/leaderBoard/container/leaderboardContainer.js b/src/components/leaderboard/container/leaderboardContainer.js similarity index 95% rename from src/components/leaderBoard/container/leaderboardContainer.js rename to src/components/leaderboard/container/leaderboardContainer.js index 777b838c1..6b4f00af8 100644 --- a/src/components/leaderBoard/container/leaderboardContainer.js +++ b/src/components/leaderboard/container/leaderboardContainer.js @@ -12,7 +12,7 @@ import { default as ROUTES } from '../../../constants/routeNames'; // Utilities // Component -import LeaderboardView from '../view/leaderBoardView'; +import LeaderboardView from '../view/leaderboardView'; /* * Props Name Description Value diff --git a/src/components/leaderBoard/index.js b/src/components/leaderboard/index.js similarity index 100% rename from src/components/leaderBoard/index.js rename to src/components/leaderboard/index.js diff --git a/src/components/leaderBoard/view/leaderBoardStyles.js b/src/components/leaderboard/view/leaderboardStyles.js similarity index 100% rename from src/components/leaderBoard/view/leaderBoardStyles.js rename to src/components/leaderboard/view/leaderboardStyles.js diff --git a/src/components/leaderBoard/view/leaderBoardView.js b/src/components/leaderboard/view/leaderboardView.js similarity index 100% rename from src/components/leaderBoard/view/leaderBoardView.js rename to src/components/leaderboard/view/leaderboardView.js From 663ed638977ee4d09e40ba02575c328c1da22e70 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:05 +0200 Subject: [PATCH 06/75] Update Crowdin configuration file --- crowdin.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 crowdin.yml diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 000000000..9da8884d6 --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,3 @@ +files: + - source: /src/config/locales/en-US.json + translation: /src/config/locales/%locale%.json From 5a9e1f3e734abf6a3f838febb435bda108f9d283 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:32 +0200 Subject: [PATCH 07/75] New translations en-US.json (Romanian) --- src/config/locales/ro-RO.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ro-RO.json diff --git a/src/config/locales/ro-RO.json b/src/config/locales/ro-RO.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ro-RO.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 66bba4afc210e3f7baf6a262e872e690653ee749 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:34 +0200 Subject: [PATCH 08/75] New translations en-US.json (Malay) --- src/config/locales/ms-MY.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ms-MY.json diff --git a/src/config/locales/ms-MY.json b/src/config/locales/ms-MY.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ms-MY.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From cf4b1b29b555c90bf42f88c5d3b6a795bb34331c Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:35 +0200 Subject: [PATCH 09/75] New translations en-US.json (Galician) --- src/config/locales/gl-ES.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/gl-ES.json diff --git a/src/config/locales/gl-ES.json b/src/config/locales/gl-ES.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/gl-ES.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 496d0087761b9b5484a05d2090b198d6a4af4e3a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:36 +0200 Subject: [PATCH 10/75] New translations en-US.json (Icelandic) --- src/config/locales/is-IS.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/is-IS.json diff --git a/src/config/locales/is-IS.json b/src/config/locales/is-IS.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/is-IS.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 917bb37a5b94e42b9b3f6f78aa9309ecaaeefc14 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:38 +0200 Subject: [PATCH 11/75] New translations en-US.json (Indonesian) --- src/config/locales/id-ID.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/id-ID.json diff --git a/src/config/locales/id-ID.json b/src/config/locales/id-ID.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/id-ID.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 1596b99bc1d19bd79c4270fb4baa28c0100225a1 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:39 +0200 Subject: [PATCH 12/75] New translations en-US.json (Persian) --- src/config/locales/fa-IR.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/fa-IR.json diff --git a/src/config/locales/fa-IR.json b/src/config/locales/fa-IR.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/fa-IR.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From df344d8455b7357468eaad601e11097fe7c75893 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:40 +0200 Subject: [PATCH 13/75] New translations en-US.json (Tamil) --- src/config/locales/ta-IN.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ta-IN.json diff --git a/src/config/locales/ta-IN.json b/src/config/locales/ta-IN.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ta-IN.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From b01438af55f5c2168f3986639bb8c98f76027b1f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:42 +0200 Subject: [PATCH 14/75] New translations en-US.json (Bengali) --- src/config/locales/bn-BD.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/bn-BD.json diff --git a/src/config/locales/bn-BD.json b/src/config/locales/bn-BD.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/bn-BD.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 6386219077e430776023123ef6664031d09036ad Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:43 +0200 Subject: [PATCH 15/75] New translations en-US.json (Thai) --- src/config/locales/th-TH.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/th-TH.json diff --git a/src/config/locales/th-TH.json b/src/config/locales/th-TH.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/th-TH.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 5bfc6702236b0af1ce192536fa735f6397b384ef Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:45 +0200 Subject: [PATCH 16/75] New translations en-US.json (Croatian) --- src/config/locales/hr-HR.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/hr-HR.json diff --git a/src/config/locales/hr-HR.json b/src/config/locales/hr-HR.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/hr-HR.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 799df22774647b0ca77159588388c8b918da2893 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:46 +0200 Subject: [PATCH 17/75] New translations en-US.json (Kazakh) --- src/config/locales/kk-KZ.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/kk-KZ.json diff --git a/src/config/locales/kk-KZ.json b/src/config/locales/kk-KZ.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/kk-KZ.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 17263022f6c68e0ee33636fff74de22af5762455 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:47 +0200 Subject: [PATCH 18/75] New translations en-US.json (Estonian) --- src/config/locales/et-EE.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/et-EE.json diff --git a/src/config/locales/et-EE.json b/src/config/locales/et-EE.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/et-EE.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 433154edb27129fa8d207898f85f51bfddb1f253 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:48 +0200 Subject: [PATCH 19/75] New translations en-US.json (Latvian) --- src/config/locales/lv-LV.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/lv-LV.json diff --git a/src/config/locales/lv-LV.json b/src/config/locales/lv-LV.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/lv-LV.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 8ce0666c52b3d8a1fad8f2f9e4212b0655e69bbb Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:50 +0200 Subject: [PATCH 20/75] New translations en-US.json (Azerbaijani) --- src/config/locales/az-AZ.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/az-AZ.json diff --git a/src/config/locales/az-AZ.json b/src/config/locales/az-AZ.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/az-AZ.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 5c2259b08a08ee6c43db548bfc25007a3872bc1f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:51 +0200 Subject: [PATCH 21/75] New translations en-US.json (Hindi) --- src/config/locales/hi-IN.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/hi-IN.json diff --git a/src/config/locales/hi-IN.json b/src/config/locales/hi-IN.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/hi-IN.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From ca7ad0e2909f1c11fa9f630b0ca19a911eddd9dc Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:52 +0200 Subject: [PATCH 22/75] New translations en-US.json (Kyrgyz) --- src/config/locales/ky-KG.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ky-KG.json diff --git a/src/config/locales/ky-KG.json b/src/config/locales/ky-KG.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ky-KG.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From de3b26b39713ddc5109ed3376aae0e9eb69f87b1 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:53 +0200 Subject: [PATCH 23/75] New translations en-US.json (Esperanto) --- src/config/locales/eo-UY.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/eo-UY.json diff --git a/src/config/locales/eo-UY.json b/src/config/locales/eo-UY.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/eo-UY.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From cfb0ddc52664d0e10da1264635e7d6b0b59463e6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:55 +0200 Subject: [PATCH 24/75] New translations en-US.json (Chinese Traditional) --- src/config/locales/zh-TW.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/zh-TW.json diff --git a/src/config/locales/zh-TW.json b/src/config/locales/zh-TW.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/zh-TW.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 84307e5cf3737a0d0d50d18df091310ea2699b31 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:56 +0200 Subject: [PATCH 25/75] New translations en-US.json (Tajik) --- src/config/locales/tg-TJ.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/tg-TJ.json diff --git a/src/config/locales/tg-TJ.json b/src/config/locales/tg-TJ.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/tg-TJ.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From b6b37ab7f09ba6663bbc73a0f5286b71430e78ef Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:57 +0200 Subject: [PATCH 26/75] New translations en-US.json (Gothic) --- src/config/locales/got-DE.json | 132 +++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/got-DE.json diff --git a/src/config/locales/got-DE.json b/src/config/locales/got-DE.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/got-DE.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 927a0e0d28dcec0a1c6561cb783600615be320c7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:40:58 +0200 Subject: [PATCH 27/75] New translations en-US.json (Sanskrit) --- src/config/locales/sa-IN.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/sa-IN.json diff --git a/src/config/locales/sa-IN.json b/src/config/locales/sa-IN.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/sa-IN.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 35ef8890ed3967d57d97de1a8850f358ac82fb26 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:00 +0200 Subject: [PATCH 28/75] New translations en-US.json (Turkmen) --- src/config/locales/tk-TM.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/tk-TM.json diff --git a/src/config/locales/tk-TM.json b/src/config/locales/tk-TM.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/tk-TM.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 86e845e4866a7bce6031fd303e42c37c769ad3c2 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:01 +0200 Subject: [PATCH 29/75] New translations en-US.json (Kashmiri) --- src/config/locales/ks-IN.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ks-IN.json diff --git a/src/config/locales/ks-IN.json b/src/config/locales/ks-IN.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ks-IN.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 4e08a58d3d1dfc949e0fe086fce3127ed5070eb0 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:02 +0200 Subject: [PATCH 30/75] New translations en-US.json (Cebuano) --- src/config/locales/ceb-PH.json | 132 +++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ceb-PH.json diff --git a/src/config/locales/ceb-PH.json b/src/config/locales/ceb-PH.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ceb-PH.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From fd6325101be559393fda42c1a4f68891441c4f8a Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:04 +0200 Subject: [PATCH 31/75] New translations en-US.json (Yoruba) --- src/config/locales/yo-NG.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/yo-NG.json diff --git a/src/config/locales/yo-NG.json b/src/config/locales/yo-NG.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/yo-NG.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From e027dc2179fb35167058598356a6da76b9552963 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:06 +0200 Subject: [PATCH 32/75] New translations en-US.json (Nepali) --- src/config/locales/ne-NP.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ne-NP.json diff --git a/src/config/locales/ne-NP.json b/src/config/locales/ne-NP.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ne-NP.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From f21a0e0b194c0995ddd36bd54de67c7d8549f0bf Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:07 +0200 Subject: [PATCH 33/75] New translations en-US.json (Filipino) --- src/config/locales/fil-PH.json | 132 +++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/fil-PH.json diff --git a/src/config/locales/fil-PH.json b/src/config/locales/fil-PH.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/fil-PH.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From f0c7531533d675c8eff4443e3722091b9d7d10c2 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:10 +0200 Subject: [PATCH 34/75] New translations en-US.json (Serbian (Latin)) --- src/config/locales/sr-CS.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/sr-CS.json diff --git a/src/config/locales/sr-CS.json b/src/config/locales/sr-CS.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/sr-CS.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From e2e54a9deee7e353904d86b8732f4e4b3d4a6bab Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:11 +0200 Subject: [PATCH 35/75] New translations en-US.json (Swahili) --- src/config/locales/sw-KE.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/sw-KE.json diff --git a/src/config/locales/sw-KE.json b/src/config/locales/sw-KE.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/sw-KE.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From dee77eaafa0acf80d9293bf72ce10d54172e0be3 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:12 +0200 Subject: [PATCH 36/75] New translations en-US.json (Assamese) --- src/config/locales/as-IN.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/as-IN.json diff --git a/src/config/locales/as-IN.json b/src/config/locales/as-IN.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/as-IN.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 9c3198792129200310a65d2d31eac564795bbcbe Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:14 +0200 Subject: [PATCH 37/75] New translations en-US.json (Uzbek) --- src/config/locales/uz-UZ.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/uz-UZ.json diff --git a/src/config/locales/uz-UZ.json b/src/config/locales/uz-UZ.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/uz-UZ.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From f865570ee12d677ce8964fad4c3892a02b40c774 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:15 +0200 Subject: [PATCH 38/75] New translations en-US.json (Bosnian) --- src/config/locales/bs-BA.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/bs-BA.json diff --git a/src/config/locales/bs-BA.json b/src/config/locales/bs-BA.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/bs-BA.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 0febd4f4fdfaa46275ee25c2053a2b7595d0cffb Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:16 +0200 Subject: [PATCH 39/75] New translations en-US.json (Tibetan) --- src/config/locales/bo-BT.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/bo-BT.json diff --git a/src/config/locales/bo-BT.json b/src/config/locales/bo-BT.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/bo-BT.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From d7dbed88e4c51490c5aec1cb89eaa88abf21ac19 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:17 +0200 Subject: [PATCH 40/75] New translations en-US.json (Vietnamese) --- src/config/locales/vi-VN.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/vi-VN.json diff --git a/src/config/locales/vi-VN.json b/src/config/locales/vi-VN.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/vi-VN.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 6568f3f23a731c2adb5db067aa64584bb509ccb7 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:19 +0200 Subject: [PATCH 41/75] New translations en-US.json (Chinese Simplified) --- src/config/locales/zh-CN.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/zh-CN.json diff --git a/src/config/locales/zh-CN.json b/src/config/locales/zh-CN.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/zh-CN.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 82fc3232a8918a0f03707c91b3c8a3a9c011faaa Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:20 +0200 Subject: [PATCH 42/75] New translations en-US.json (French) --- src/config/locales/fr-FR.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/fr-FR.json diff --git a/src/config/locales/fr-FR.json b/src/config/locales/fr-FR.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/fr-FR.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 9092c5abc7f3409b6fad7426f458a7f8e729a3e2 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:22 +0200 Subject: [PATCH 43/75] New translations en-US.json (Greek) --- src/config/locales/el-GR.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/el-GR.json diff --git a/src/config/locales/el-GR.json b/src/config/locales/el-GR.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/el-GR.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 26570deab7386807a2b4b4a2e8db8d8ee365abaf Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:24 +0200 Subject: [PATCH 44/75] New translations en-US.json (Italian) --- src/config/locales/it-IT.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/it-IT.json diff --git a/src/config/locales/it-IT.json b/src/config/locales/it-IT.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/it-IT.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 87318c8469ffa614fe3d19375935d4279e538980 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:25 +0200 Subject: [PATCH 45/75] New translations en-US.json (Armenian) --- src/config/locales/hy-AM.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/hy-AM.json diff --git a/src/config/locales/hy-AM.json b/src/config/locales/hy-AM.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/hy-AM.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From a05310803737e36d5e58065a1be640b061f437c3 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:27 +0200 Subject: [PATCH 46/75] New translations en-US.json (Hungarian) --- src/config/locales/hu-HU.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/hu-HU.json diff --git a/src/config/locales/hu-HU.json b/src/config/locales/hu-HU.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/hu-HU.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 212c37336886a17aec091940e0ef43e69269832e Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:28 +0200 Subject: [PATCH 47/75] New translations en-US.json (Hebrew) --- src/config/locales/he-IL.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/he-IL.json diff --git a/src/config/locales/he-IL.json b/src/config/locales/he-IL.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/he-IL.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From b9c4788d431e013d2ffb590d941d4435b9be0cde Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:29 +0200 Subject: [PATCH 48/75] New translations en-US.json (Irish) --- src/config/locales/ga-IE.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ga-IE.json diff --git a/src/config/locales/ga-IE.json b/src/config/locales/ga-IE.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ga-IE.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 166e4064a68ee0805810873abac01ce9d4716e9f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:30 +0200 Subject: [PATCH 49/75] New translations en-US.json (Finnish) --- src/config/locales/fi-FI.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/fi-FI.json diff --git a/src/config/locales/fi-FI.json b/src/config/locales/fi-FI.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/fi-FI.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From c55d509a4ced536354151ec6efb3548480efae01 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:32 +0200 Subject: [PATCH 50/75] New translations en-US.json (German) --- src/config/locales/de-DE.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/de-DE.json diff --git a/src/config/locales/de-DE.json b/src/config/locales/de-DE.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/de-DE.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From aae3448c3dbbdcb86a148549e1708b202ea42ddb Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:33 +0200 Subject: [PATCH 51/75] New translations en-US.json (Georgian) --- src/config/locales/ka-GE.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ka-GE.json diff --git a/src/config/locales/ka-GE.json b/src/config/locales/ka-GE.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ka-GE.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From a7742c29e184a13ba1453f19e419b44bd7d99dc0 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:34 +0200 Subject: [PATCH 52/75] New translations en-US.json (Danish) --- src/config/locales/da-DK.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/da-DK.json diff --git a/src/config/locales/da-DK.json b/src/config/locales/da-DK.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/da-DK.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From c449458eef31f965c684b4f12e31232dd74c47d3 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:36 +0200 Subject: [PATCH 53/75] New translations en-US.json (Czech) --- src/config/locales/cs-CZ.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/cs-CZ.json diff --git a/src/config/locales/cs-CZ.json b/src/config/locales/cs-CZ.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/cs-CZ.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 8dbb20ba8bad66a1f719e83ae57dcfa5d3254012 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:37 +0200 Subject: [PATCH 54/75] New translations en-US.json (Catalan) --- src/config/locales/ca-ES.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ca-ES.json diff --git a/src/config/locales/ca-ES.json b/src/config/locales/ca-ES.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ca-ES.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From cd7f4939dd38d1f4cb78e1400ff4698872b9bd50 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:38 +0200 Subject: [PATCH 55/75] New translations en-US.json (Bulgarian) --- src/config/locales/bg-BG.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/bg-BG.json diff --git a/src/config/locales/bg-BG.json b/src/config/locales/bg-BG.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/bg-BG.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 902c813c884c34944ed4eaee2949f83e0dfeb6d9 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:40 +0200 Subject: [PATCH 56/75] New translations en-US.json (Arabic) --- src/config/locales/ar-SA.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ar-SA.json diff --git a/src/config/locales/ar-SA.json b/src/config/locales/ar-SA.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ar-SA.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 7c853ed5635795eb3e696329cb48e66b67c999bf Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:41 +0200 Subject: [PATCH 57/75] New translations en-US.json (Spanish) --- src/config/locales/es-ES.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/es-ES.json diff --git a/src/config/locales/es-ES.json b/src/config/locales/es-ES.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/es-ES.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From f45509ba795ce861ae361cb5113d66fa3a01c2e0 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:42 +0200 Subject: [PATCH 58/75] New translations en-US.json (Japanese) --- src/config/locales/ja-JP.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ja-JP.json diff --git a/src/config/locales/ja-JP.json b/src/config/locales/ja-JP.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ja-JP.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 856445a3c885ef1e57c2f232d772af012dc09f51 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:43 +0200 Subject: [PATCH 59/75] New translations en-US.json (Korean) --- src/config/locales/ko-KR.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ko-KR.json diff --git a/src/config/locales/ko-KR.json b/src/config/locales/ko-KR.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ko-KR.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 67cd16edd00be8e7d9b33a7e77fb5549b6c76fb6 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:45 +0200 Subject: [PATCH 60/75] New translations en-US.json (Ukrainian) --- src/config/locales/uk-UA.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/uk-UA.json diff --git a/src/config/locales/uk-UA.json b/src/config/locales/uk-UA.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/uk-UA.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From df77a4283d878542d0bb71000f16c958c93eaf41 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:46 +0200 Subject: [PATCH 61/75] New translations en-US.json (Portuguese) --- src/config/locales/pt-PT.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/pt-PT.json diff --git a/src/config/locales/pt-PT.json b/src/config/locales/pt-PT.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/pt-PT.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 70f05012d6fb0e3bbababb79a654a8c83eac22d8 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:47 +0200 Subject: [PATCH 62/75] New translations en-US.json (Turkish) --- src/config/locales/tr-TR.json | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/src/config/locales/tr-TR.json b/src/config/locales/tr-TR.json index 0857ccbe0..275085f79 100644 --- a/src/config/locales/tr-TR.json +++ b/src/config/locales/tr-TR.json @@ -1,16 +1,14 @@ { "wallet": { - "author_reward": "Author Reward", - "claim_reward_balance_ok": "Reward balance claimed", - "claim_reward_balance": "Claim Reward Balance", - "comment_benefactor_reward": "Comment Benefactor Reward", "curation_reward": "Curation Reward", - "fill_order": "Fill Order", - "transactions": "Transactions", - "transfer_from_savings": "Tasarruflardan Transfer", - "transfer_to_vesting": "Transfer To Vesting", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", "transfer": "Transfer", - "withdraw_vesting": "Withdraw Vesting" + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Tasarruflardan Transfer", + "withdraw_vesting": "Withdraw Vesting", + "fill_order": "Fill Order" }, "notification": { "vote": "beğendi", @@ -44,12 +42,12 @@ "wallet": "Cüzdan", "wallet_details": "Cüzdan Detayları", "unclaimed_rewards": "Sahipsiz Ödül", - "login_to_see": "Giriş yap ve gör!", - "havent_commented": "henüz yorum yapmadı", - "havent_posted": "henüz post paylasmadi", "full_in": "Full in", "hours": "saat", "voting_power": "Oylama güçü", + "login_to_see": "Giriş yap ve gör!", + "havent_commented": "henüz yorum yapmadı", + "havent_posted": "henüz post paylasmadi", "steem_power": "Steem Güçü", "next_power_text": "İleriki güç", "days": "gün içinde düşecek", From 054c6181abbe3edce62ff638c38a21299a26d845 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:48 +0200 Subject: [PATCH 63/75] New translations en-US.json (Swedish) --- src/config/locales/sv-SE.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/sv-SE.json diff --git a/src/config/locales/sv-SE.json b/src/config/locales/sv-SE.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/sv-SE.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 2fa8092d2329dd00e57affb4cce2e496b50ed518 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:50 +0200 Subject: [PATCH 64/75] New translations en-US.json (Albanian) --- src/config/locales/sq-AL.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/sq-AL.json diff --git a/src/config/locales/sq-AL.json b/src/config/locales/sq-AL.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/sq-AL.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From ab8bbbcb1c8b2039da0beaeebc1a0ed02672b27d Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:51 +0200 Subject: [PATCH 65/75] New translations en-US.json (Slovenian) --- src/config/locales/sl-SI.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/sl-SI.json diff --git a/src/config/locales/sl-SI.json b/src/config/locales/sl-SI.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/sl-SI.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From de77c548385a3cbcb7a4879fdc31d19453d6eff4 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:52 +0200 Subject: [PATCH 66/75] New translations en-US.json (Slovak) --- src/config/locales/sk-SK.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/sk-SK.json diff --git a/src/config/locales/sk-SK.json b/src/config/locales/sk-SK.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/sk-SK.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 65da0f5f99f676f6807063773d3c88a59a318329 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:54 +0200 Subject: [PATCH 67/75] New translations en-US.json (Polish) --- src/config/locales/pl-PL.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/pl-PL.json diff --git a/src/config/locales/pl-PL.json b/src/config/locales/pl-PL.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/pl-PL.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 67f536a476591c04f23c344793ec288db6c01ab2 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:55 +0200 Subject: [PATCH 68/75] New translations en-US.json (Kurdish) --- src/config/locales/ku-TR.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ku-TR.json diff --git a/src/config/locales/ku-TR.json b/src/config/locales/ku-TR.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ku-TR.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 92bd7d70b5a7554117851d528c2b8adb5608480e Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:56 +0200 Subject: [PATCH 69/75] New translations en-US.json (Punjabi) --- src/config/locales/pa-IN.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/pa-IN.json diff --git a/src/config/locales/pa-IN.json b/src/config/locales/pa-IN.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/pa-IN.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 98e4577fdf2c84841ea7370146921fb17df2e724 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:58 +0200 Subject: [PATCH 70/75] New translations en-US.json (Norwegian) --- src/config/locales/no-NO.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/no-NO.json diff --git a/src/config/locales/no-NO.json b/src/config/locales/no-NO.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/no-NO.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 2f282e1676f5ecb621f7b3c16c4137b7522e9f2b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:41:59 +0200 Subject: [PATCH 71/75] New translations en-US.json (Dutch) --- src/config/locales/nl-NL.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/nl-NL.json diff --git a/src/config/locales/nl-NL.json b/src/config/locales/nl-NL.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/nl-NL.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 72581af65b1a2a9265dd5a5dee5b0adc15963e6b Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:42:00 +0200 Subject: [PATCH 72/75] New translations en-US.json (Mongolian) --- src/config/locales/mn-MN.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/mn-MN.json diff --git a/src/config/locales/mn-MN.json b/src/config/locales/mn-MN.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/mn-MN.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From ec0211f002c266bf8bac3848c2da5fe0b804503f Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:42:01 +0200 Subject: [PATCH 73/75] New translations en-US.json (Macedonian) --- src/config/locales/mk-MK.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/mk-MK.json diff --git a/src/config/locales/mk-MK.json b/src/config/locales/mk-MK.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/mk-MK.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 423ae844b213aec236eadc920c1fd5e71f870707 Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:42:03 +0200 Subject: [PATCH 74/75] New translations en-US.json (Lithuanian) --- src/config/locales/lt-LT.json | 132 ++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/lt-LT.json diff --git a/src/config/locales/lt-LT.json b/src/config/locales/lt-LT.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/lt-LT.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +} From 2b19971a1dc77cc130a79cd09e9bd844227ae7fc Mon Sep 17 00:00:00 2001 From: Feruz M Date: Mon, 7 Jan 2019 16:42:04 +0200 Subject: [PATCH 75/75] New translations en-US.json (Acehnese) --- src/config/locales/ac-ace.json | 132 +++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 src/config/locales/ac-ace.json diff --git a/src/config/locales/ac-ace.json b/src/config/locales/ac-ace.json new file mode 100644 index 000000000..709946c61 --- /dev/null +++ b/src/config/locales/ac-ace.json @@ -0,0 +1,132 @@ +{ + "wallet": { + "curation_reward": "Curation Reward", + "author_reward": "Author Reward", + "comment_benefactor_reward": "Comment Benefactor Reward", + "claim_reward_balance": "Claim Reward Balance", + "transfer": "Transfer", + "transfer_to_vesting": "Transfer To Vesting", + "transfer_from_savings": "Transfer From Savings", + "withdraw_vesting": "Power Down", + "fill_order": "Fill Order" + }, + "notification": { + "vote": "likes your post", + "unvote": "unvoted your post", + "reply": "replied to your post", + "mention": "mentioned you", + "follow": "followed you", + "unfollow": "unfollowed you", + "ignore": "ignored you", + "reblog": "reblogged your post", + "comingsoon": "Leaderboard feature is coming soon!", + "notification": "Notifications", + "leaderboard": "Leaderboard", + "leaderboard_title": "Daily Top User", + "recent": "Recent", + "yesterday": "Yesterday", + "this_week": "This Week", + "this_month": "This Month", + "older_then": "Older Than A Month" + }, + "messages": { + "comingsoon": "Messages feature is coming soon!" + }, + "profile": { + "following": "Following", + "follower": "Follower", + "post": "Post", + "details": "Profile Details", + "comments": "Comments", + "replies": "Replies", + "wallet": "Wallet", + "wallet_details": "Wallet Details", + "unclaimed_rewards": "Unclaimed Rewards", + "full_in": "Full in", + "hours": "hours", + "voting_power": "Voting power", + "login_to_see": "Login to see", + "havent_commented": "haven't commented anything yet", + "havent_posted": "haven't posted anything yet", + "steem_power": "Steem Power", + "next_power_text": "Next power down is in", + "days": "days", + "day": "day", + "steem_dollars": "Steem Dollars", + "savings": "Savings" + }, + "settings": { + "settings": "Settings", + "currency": "Currency", + "language": "Language", + "server": "Server", + "dark_theme": "Dark Theme", + "push_notification": "Push Notification", + "pincode": "Pincode", + "reset": "Reset" + }, + "voters": { + "voters_info": "Voters Info", + "no_user": "No user found." + }, + "login": { + "signin": "Sign in", + "signup": "Sign up", + "signin_title": "To get all the benefits of using eSteem", + "username": "Username", + "password": "Password or WIF", + "description": "User credentials are kept locally on the device. Credentials are removed upon logout!", + "cancel": "cancel", + "login": "LOGIN", + "steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect." + }, + "home": { + "feed": "Feed", + "popular": "Popular" + }, + "side_menu": { + "profile": "Profile", + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "drafts": "Drafts", + "schedules": "Schedules", + "gallery": "Gallery", + "settings": "Settings", + "add_account": "Add Account", + "logout": "Logout", + "cancel": "Cancel", + "logout_text": "Are you sure you want to logout?" + }, + "header": { + "title": "Login to customize your feed", + "search": "Search..." + }, + "basic_header": { + "publish": "Publish", + "search": "Search", + "update": "Update", + "reply": "Reply" + }, + "editor": { + "title": "Title", + "tags": "tags", + "default_placeholder": "What would you like to write about today?", + "reply_placeholder": "What would you like to write about above post?", + "publish": "Publish", + "reply": "Reply" + }, + "pincode": { + "enter_text": "Enter pin to unlock", + "set_new": "Set new pin", + "write_again": "Write again", + "forgot_text": "Oh, I forgot it..." + }, + "alert": { + "success": "Success!", + "allRead": "Marked all notification as read" + }, + "post": { + "reblog_alert": "Are you sure you want to reblog?", + "reblog_cancel": "Cancel" + } +}