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 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/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 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/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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} diff --git a/src/config/locales/en-US.json b/src/config/locales/en-US.json index 4a0be1da6..9290dbfd2 100644 --- a/src/config/locales/en-US.json +++ b/src/config/locales/en-US.json @@ -123,8 +123,16 @@ }, "alert": { "success": "Success!", - "allRead": "Marked all notification as read", - "claim_reward_balance_ok": "Reward balance claimed" + "allRead": "Marked all notifications as read", + "claim_reward_balance_ok": "Reward balance claimed", + "fail": "Fail!", + "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 have 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/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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} diff --git a/src/config/locales/ru-RU.json b/src/config/locales/ru-RU.json index 293a029b3..10900c9ff 100644 --- a/src/config/locales/ru-RU.json +++ b/src/config/locales/ru-RU.json @@ -124,7 +124,15 @@ "alert": { "success": "Успех!", "allRead": "Всё прочтено", - "claim_reward_balance_ok": "Награда зачислена на баланс" + "claim_reward_balance_ok": "Награда зачислена на баланс", + "fail": "Не вышло!", + "success_shared": "Успешно поделились постом!", + "permission_denied": "Доступ запрещён", + "permission_text": "Пожалуйста, откройте настройки телефона и измените разрешения для приложения eSteem.", + "success_rebloged": "Репостнуто!", + "already_rebloged": "Вы уже делали этот репост!", + "warning": "Внимание", + "invalid_pincode": "Не верный пин, пожалуйста, попробуйте снова." }, "post": { "reblog_alert": "Вы уверены, что хотите сделать репост?", 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} diff --git a/src/config/locales/tr-TR.json b/src/config/locales/tr-TR.json index 985aaa56d..d0d6f2c46 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", @@ -126,10 +124,22 @@ "alert": { "success": "Başarılı!", "allRead": "Tüm bildirimler okundu", - "claim_reward_balance_ok": "Ödül bakiyesi talep edildi." + "claim_reward_balance_ok": "Ödül bakiyesi talep edildi.", + "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 +// ı ç ş ö Ç Ş ü 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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" + } +} 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