diff --git a/src/app/Main.js b/src/app/Main.js index 8087c424ead537a4a9192f145314cdfbe02f6a7e..581a89e60a1665bf51fdb86809ec2c3e04960b96 100644 --- a/src/app/Main.js +++ b/src/app/Main.js @@ -99,7 +99,6 @@ if (!window.Intl) { require('intl/locale-data/jsonp/ru.js'); require('intl/locale-data/jsonp/fr.js'); require('intl/locale-data/jsonp/it.js'); - require('intl/locale-data/jsonp/ko.js'); require('intl/locale-data/jsonp/ja.js'); Iso.bootstrap(runApp); }, diff --git a/src/app/Translator.js b/src/app/Translator.js index af292b495ab7b94add1e72bc02f25f3521cae869..340357d952ade6d3083094a60c7b08822e0d9934 100644 --- a/src/app/Translator.js +++ b/src/app/Translator.js @@ -6,14 +6,13 @@ import es from 'react-intl/locale-data/es'; import ru from 'react-intl/locale-data/ru'; import fr from 'react-intl/locale-data/fr'; import it from 'react-intl/locale-data/it'; -import ko from 'react-intl/locale-data/ko'; import zh from 'react-intl/locale-data/zh'; import pl from 'react-intl/locale-data/pl'; import ja from 'react-intl/locale-data/ja'; import { DEFAULT_LANGUAGE } from 'app/client_config'; import tt from 'counterpart'; -addLocaleData([...en, ...es, ...ru, ...fr, ...it, ...ko, ...zh, ...pl, ...ja]); +addLocaleData([...en, ...es, ...ru, ...fr, ...it, ...zh, ...pl, ...ja]); tt.registerTranslations('en', require('counterpart/locales/en')); tt.registerTranslations('en', require('app/locales/en.json')); @@ -30,9 +29,6 @@ tt.registerTranslations('fr', require('app/locales/fr.json')); tt.registerTranslations('it', require('app/locales/counterpart/it')); tt.registerTranslations('it', require('app/locales/it.json')); -tt.registerTranslations('ko', require('app/locales/counterpart/ko')); -tt.registerTranslations('ko', require('app/locales/ko.json')); - tt.registerTranslations('zh', require('app/locales/counterpart/zh')); tt.registerTranslations('zh', require('app/locales/zh.json')); diff --git a/src/app/components/elements/Filters/index.jsx b/src/app/components/elements/Filters/index.jsx index efa6f6b3ee8902f3d0f9210ab706deeb6147419f..cbedfc7cb4568c537007a277548d62f6765d2673 100644 --- a/src/app/components/elements/Filters/index.jsx +++ b/src/app/components/elements/Filters/index.jsx @@ -8,6 +8,7 @@ class Filters extends React.Component { showFilters: false, }; } + render() { const { handleIncoming, @@ -20,13 +21,16 @@ class Filters extends React.Component { } = this.props; const handleShowFilters = () => { - this.setState({ showFilters: !this.state.showFilters }); + this.setState((prevState) => ({ + showFilters: !prevState.showFilters, + })); }; return ( <div className="row"> <div className="column small-12"> <button + type="button" onClick={handleShowFilters} className={ this.state.showFilters === true @@ -79,10 +83,10 @@ class Filters extends React.Component { <input onChange={handleFromUser} type="checkbox" - id="outgoing" - name="outgoing" + id="from-user" + name="from-user" /> - <label htmlFor="outgoing"> + <label htmlFor="from-user"> Received from </label> </div> @@ -90,10 +94,10 @@ class Filters extends React.Component { <input onChange={handleToUser} type="checkbox" - id="outgoing" - name="outgoing" + id="to-user" + name="to-user" /> - <label htmlFor="outgoing"> + <label htmlFor="to-user"> Transfer to </label> </div> diff --git a/src/app/components/modules/Settings.jsx b/src/app/components/modules/Settings.jsx index b55b054fa79c194e6c27a64bd463a5c31f6daeb4..9202278295c9631e0dc395b41398e32b4b08c735 100644 --- a/src/app/components/modules/Settings.jsx +++ b/src/app/components/modules/Settings.jsx @@ -73,7 +73,6 @@ class Settings extends React.Component { <option value="ru">Russian руÑÑкий</option> <option value="fr">French français</option> <option value="it">Italian italiano</option> - <option value="ko">Korean 한êµì–´</option> <option value="ja">Japanese 日本語</option> <option value="pl">Polish</option> <option value="zh">Chinese ç®€ä½“ä¸æ–‡</option> diff --git a/src/app/help/en/faq.md b/src/app/help/en/faq.md index bcfd636709ca91d83c88954527b868a7e7255fd3..c416b0da9f4c7b0a90fb62a1898493cf73979484 100644 --- a/src/app/help/en/faq.md +++ b/src/app/help/en/faq.md @@ -388,7 +388,7 @@ Yes. You can see the list of followers or people you are following by clicking o <a href="#Table_of_Contents_Site_Navigation">^</a> ## <span id="What_languages_are_supported">What languages are supported?</span> -Currently hive.blog supports English, Spanish, Russian, French, Italian, Korean, Polish, and Chinese. There are also many communities using the platform that speak other languages. If you are interested in joining our translation team to add additional languages or help support the ones we have, please email us at translate@hive.io. +Currently hive.blog supports English, Spanish, Russian, French, Italian, Polish, and Chinese. There are also many communities using the platform that speak other languages. If you are interested in joining our translation team to add additional languages or help support the ones we have, please email us at translate@hive.io. <a href="#Table_of_Contents_Site_Navigation">^</a> # Posting @@ -502,7 +502,6 @@ Language-specific groups include: - Chinese = cn - German = deutsch - Spanish = spanish -- Korean = kr - Russian = ru - French = fr - Portuguese = pt diff --git a/src/app/locales/add_missing.js b/src/app/locales/add_missing.js index 2a94de58d32dfee01b5dd2ac7128632770c7dda2..95513a9f44f897f3c440ffa4b5b5883a752de5f6 100644 --- a/src/app/locales/add_missing.js +++ b/src/app/locales/add_missing.js @@ -1,4 +1,4 @@ -// for LANG in es fr it ja ko pl ru zh; do echo $LANG; node add_missing.js en $LANG > tmp.json ; mv tmp.json $LANG.json ; done +// for LANG in es fr it ja pl ru zh; do echo $LANG; node add_missing.js en $LANG > tmp.json ; mv tmp.json $LANG.json ; done const fs = require('fs'); const lodash = require('lodash'); diff --git a/src/app/locales/counterpart/ko.js b/src/app/locales/counterpart/ko.js deleted file mode 100644 index 6d5b87276b3d72cf3a8a6acc7906c60e41402d72..0000000000000000000000000000000000000000 --- a/src/app/locales/counterpart/ko.js +++ /dev/null @@ -1,28 +0,0 @@ -// The translations in this file are added by default. - -module.exports = { - counterpart: { - names: require('date-names/en'), - pluralize: require('pluralizers/en'), - - formats: { - date: { - default: '%a, %e %b %Y', - long: '%A, %B %o, %Y', - short: '%b %e', - }, - - time: { - default: '%H:%M', - long: '%H:%M:%S %z', - short: '%H:%M', - }, - - datetime: { - default: '%a, %e %b %Y %H:%M', - long: '%A, %B %o, %Y %H:%M:%S %z', - short: '%e %b %H:%M', - }, - }, - }, -}; diff --git a/src/app/locales/en.json b/src/app/locales/en.json index 6b82a0b062e9c3f3a7b01bbfd77e3f2f752a3e2c..4f80d7a1116aab4a8ebaa2b71e7f24c1c13052af 100644 --- a/src/app/locales/en.json +++ b/src/app/locales/en.json @@ -444,7 +444,7 @@ "witness_proxy_current": "Your current proxy is", "witness_proxy_set": "Set proxy", "witness_proxy_clear": "Clear proxy", - "proxy_update_error": "Your proxy was not updated", + "proxy_update_error": "The request to update your proxy has failed, please try again later...", "missed_blocks": "Missed blocks", "votes_received": "Votes received", "hp_required_to_rank_up": "Needs %(votehp)s to level up", @@ -643,7 +643,7 @@ "each_account_segment_should_end_with_a_letter_or_digit": "Each account segment should end with a letter or digit.", "each_account_segment_should_be_longer": "Each account segment should be longer.", "verified_exchange_no_memo": "You must include a memo for your exchange transfer.", - "badactor": "Use caution sending to this account. Please double check your spelling for possible phishing.", + "badactor": "Potential scam attempt, destination address on a Bad Actor List, transfer prohibited!", "memo_has_privatekey": "Please do not include what appears to be a private key or password.", "memo_is_privatekey": "Do not use private keys in memos.", "memo_is_password": "Do not use passwords in memos." diff --git a/src/app/locales/es.json b/src/app/locales/es.json index 610d99af7057eb57527c0145ff6d6a43d525e4ed..e535b986a6b9c53e8579b60493ad0eb28de4e838 100644 --- a/src/app/locales/es.json +++ b/src/app/locales/es.json @@ -623,7 +623,7 @@ "each_account_segment_should_end_with_a_letter_or_digit": "Each account segment should end with a letter or digit.", "each_account_segment_should_be_longer": "Each account segment should be longer.", "verified_exchange_no_memo": "Tienes que incluir un memo para la transferencia al exchange", - "badactor": "Use caution sending to this account. Please double check your spelling for possible phishing.", + "badactor": "Potential scam attempt, destination address on a Bad Actor List, transfer prohibited!", "memo_has_privatekey": "Please do not include what appears to be a private key or password.", "memo_is_privatekey": "Do not use private keys in memos.", "memo_is_password": "Do not use passwords in memos.", diff --git a/src/app/locales/fr.json b/src/app/locales/fr.json index 42d98e46043eacc242a8777a1d9bbed946e1750d..513ae75dfc93938c6502819c82a397b2827bb107 100644 --- a/src/app/locales/fr.json +++ b/src/app/locales/fr.json @@ -623,7 +623,7 @@ "each_account_segment_should_end_with_a_letter_or_digit": "Each account segment should end with a letter or digit.", "each_account_segment_should_be_longer": "Each account segment should be longer.", "verified_exchange_no_memo": "Vous devez inclure un mémo pour votre transfert vers un marché d'échanges.", - "badactor": "Use caution sending to this account. Please double check your spelling for possible phishing.", + "badactor": "Potential scam attempt, destination address on a Bad Actor List, transfer prohibited!", "memo_has_privatekey": "Please do not include what appears to be a private key or password.", "memo_is_privatekey": "Do not use private keys in memos.", "memo_is_password": "Do not use passwords in memos.", diff --git a/src/app/locales/it.json b/src/app/locales/it.json index d33632bb066101e734d19f746001170ebeda0401..f2ec3147014060074098542d488a0f8a8275af2b 100644 --- a/src/app/locales/it.json +++ b/src/app/locales/it.json @@ -623,7 +623,7 @@ "each_account_segment_should_end_with_a_letter_or_digit": "Each account segment should end with a letter or digit.", "each_account_segment_should_be_longer": "Each account segment should be longer.", "verified_exchange_no_memo": "Devi includere una memo per il trasferimento.", - "badactor": "Use caution sending to this account. Please double check your spelling for possible phishing.", + "badactor": "Potential scam attempt, destination address on a Bad Actor List, transfer prohibited!", "memo_has_privatekey": "Please do not include what appears to be a private key or password.", "memo_is_privatekey": "Do not use private keys in memos.", "memo_is_password": "Do not use passwords in memos.", diff --git a/src/app/locales/ja.json b/src/app/locales/ja.json index 73854057931b552d593cdcbf7f3a8c6b35a4724c..2666f47d5ac21bb18ba2c54b5897f788bcb668cb 100644 --- a/src/app/locales/ja.json +++ b/src/app/locales/ja.json @@ -623,7 +623,7 @@ "each_account_segment_should_end_with_a_letter_or_digit": "Each account segment should end with a letter or digit.", "each_account_segment_should_be_longer": "Each account segment should be longer.", "verified_exchange_no_memo": "å–引所ã¸é€ä¿¡ã™ã‚‹ã¨ãã¯ãƒ¡ãƒ¢ãŒå¿…è¦ã§ã™ã€‚", - "badactor": "Use caution sending to this account. Please double check your spelling for possible phishing.", + "badactor": "Potential scam attempt, destination address on a Bad Actor List, transfer prohibited!", "memo_has_privatekey": "Please do not include what appears to be a private key or password.", "memo_is_privatekey": "Do not use private keys in memos.", "memo_is_password": "Do not use passwords in memos.", diff --git a/src/app/locales/ko.json b/src/app/locales/ko.json deleted file mode 100644 index 7d71ec8352a9638bcd781107531bdd460a33c801..0000000000000000000000000000000000000000 --- a/src/app/locales/ko.json +++ /dev/null @@ -1,781 +0,0 @@ -{ - "g": { - "age": "시간", - "amount": "ì–‘", - "and": "and", - "are_you_sure": "Are you sure?", - "ask": "Ask", - "balance": "ìž”ê³ ", - "balances": "ìž”ê³ ", - "bid": "Bid", - "blog": "블로그", - "browse": "Browse", - "buy": "구매", - "buy_hive_power": "Buy Hive Power", - "buy_or_sell": "구입/íŒë§¤", - "by": "by", - "cancel": "취소", - "choose_preferred_endpoint": "기본 API 노드 ì„ íƒ", - "change_password": "비밀번호 변경", - "choose_language": "언어 ì„ íƒ", - "clear": "지우기", - "close": "닫기", - "collapse_or_expand": "닫기/펼치기", - "comments": "작성한 댓글", - "communities": "Communities", - "community_owner_name_is": "Your community owner name is", - "community_password_is": "Your password is", - "community_creating": "Your community is being created...", - "community_visit": "Visit your community", - "community_error": "Oops, there was an error creating the community, please try again.", - "community_create": "CREATE A COMMUNITY", - "community_description": "About", - "confirm": "확ì¸", - "convert": "변환하기", - "date": "ë‚ ì§œ", - "delete": "ì‚ì œ", - "dismiss": "확ì¸", - "edit": "ìˆ˜ì •", - "email": "Email", - "external_link_message": "This link will take you away from hive.blog", - "feed": "피드", - "follow": "팔로우", - "for": " for ", - "from": " from ", - "go_back": "Back", - "hide": "숨기기", - "in": "in", - "in_reply_to": "in reply to", - "insufficient_balance": "ìž”ê³ ë¶€ì¡±", - "invalid_amount": "ìž˜ëª»ëœ ê¸ˆì•¡", - "links": "Links", - "joined": "가입ì¼", - "loading": "로딩중..", - "login": "로그ì¸", - "logout": "로그아웃", - "memo": "메모", - "mute": "차단", - "my_blog": "ë‚´ 블로그", - "my_comments": "ë‚´ê°€ ì“´ 댓글", - "my_feed": "My feed", - "my_replies": "ë°›ì€ ëŒ“ê¸€", - "my_wallet": "My wallet", - "new": "ìµœì‹ ê¸€", - "newer": "최근", - "next": "다ìŒ", - "no": "No", - "ok": "Ok", - "older": "ì´ì „", - "or": "or", - "order_placed": "주문 ìš”ì²ë¨", - "password": "비밀번호", - "payouts": "글보ìƒ", - "permissions": "권한", - "phishy_message": "Link expanded to plain text; beware of a potential phishing attempt", - "post": "글쓰기", - "post_as_user": "Post as %(username)s", - "posts": "Posts", - "powered_up_100": "Powered Up 100%%", - "preview": "Preview", - "previous": "Previous", - "price": "가격", - "print": "ì¶œë ¥", - "promote": "í™ë³´", - "promoted": "í™ë³´ê¸€", - "re": "RE", - "re_to": "RE: %(topic)s", - "recent_password": "Recent Password", - "receive": "Receive ", - "remove": "Remove", - "remove_vote": "보팅 취소", - "replied_to": "replied to %(account)s", - "replies": "ë°›ì€ ëŒ“ê¸€", - "reply": "댓글 달기", - "reply_count": { - "zero": "댓글 ì—†ìŒ", - "one": "í•˜ë‚˜ì˜ ëŒ“ê¸€", - "other": "%(count)ê°œì˜ ëŒ“ê¸€" - }, - "reputation": "í‰íŒ", - "reveal_comment": "댓글 ë³´ì´ê¸°", - "request": "request", - "required": "Required", - "rewards": "ë³´ìƒ", - "save": "Save", - "saved": "Saved", - "search": "Search", - "sell": "íŒë§¤", - "settings": "ì„¤ì •", - "share_this_post": "ì´ í¬ìŠ¤íŠ¸ ê³µìœ í•˜ê¸°", - "show": "Show", - "sign_in": "로그ì¸", - "sign_up": "회ì›ê°€ìž…", - "since": "since", - "submit": "Submit", - "power_up": "파워 ì—…", - "submit_a_story": "글쓰기", - "tag": "태그", - "to": " to ", - "topics": "Topics", - "toggle_nightmode": "야간모드", - "all_tags": "ì „ì²´ 태그", - "all_tags_mobile": "All content", - "transfer": "송금 ", - "trending_topics": "Trending Topics", - "type": "Type", - "unfollow": "언팔로우", - "unmute": "차단 í•´ì œ", - "unknown": "Unknown", - "upvote": "보팅", - "upvote_post": "ì´ ê¸€ì— ë³´íŒ…í•˜ê¸°", - "username": "ì‚¬ìš©ìž ì´ë¦„", - "version": "ë²„ì „", - "vote": "보팅", - "votes": "보팅", - "wallet": "지갑", - "warning": "ê²½ê³ ", - "yes": "예", - "posting": "í¬ìŠ¤íŒ…", - "owner": "ì†Œìœ ìž", - "active": "액티브", - "account_not_found": "ê³„ì •ì„ ì°¾ì„ ìˆ˜ 없습니다", - "this_is_wrong_password": "ìž˜ëª»ëœ ë¹„ë°€ë²ˆí˜¸ 입니다", - "do_you_need_to": "Do you need to", - "account_name": "ê³„ì • ì´ë¦„", - "recover_your_account": "recover your account", - "reset_usernames_password": "Reset %(username)s's Password", - "this_will_update_usernames_authtype_key": "This will update %(username)s %(authType)s key", - "passwords_do_not_match": "Passwords do not match", - "you_need_private_password_or_key_not_a_public_key": "You need a private password or key (not a public key)", - "the_rules_of_APP_NAME": { - "one": "%(APP_NAME)s 첫번째 규칙: 비밀번호를 잃어버리지 마세요.", - "second": "%(APP_NAME)s ë‘번째 규칙: 비밀번호를 잃어버리지 마세요.", - "third": "%(APP_NAME)s 세번째 규칙: 잃어버린 비밀번호는 복구 해드릴 ë°©ë²•ì´ ì—†ìŠµë‹ˆë‹¤.", - "fourth": "네번째 규칙: ê¸°ì–µí• ìˆ˜ 있는 비밀번호는 ì•ˆì „í•˜ì§€ ì•Šì€ ë¹„ë°€ë²ˆí˜¸ 입니다.", - "fifth": "다섯번째 규칙: 무작위로 ìƒì„±ëœ 비밀번호만 사용하세요.", - "sixth": "여섯번째 규칙: 비밀번호는 혼ìžë§Œ ê°„ì§í•˜ì„¸ìš”.", - "seventh": "ì¼ê³±ë²ˆì§¸ 규칙: 비밀번호를 반드시 백업해 ë‘세요." - }, - "recover_password": "ê³„ì • 복구", - "current_password": "현재 비밀번호", - "generated_password": "ìƒì„±ëœ 비밀번호", - "backup_password_by_storing_it": "패스워드는 반드시 관리 프로그램ì´ë‚˜ 메모장 ë“±ì„ ì´ìš©í•´ì„œ 보관하세요.", - "enter_account_show_password": "Enter a valid account name to show the password", - "click_to_generate_password": "새 비밀번호를 ë§Œë“œì‹œë ¤ë©´ í´ë¦í•˜ì„¸ìš”", - "re_enter_generate_password": "ìœ„ì— ìƒì„±ëœ 비밀번호를 다시 ìž…ë ¥í•˜ì„¸ìš”", - "understand_that_APP_NAME_cannot_recover_password": "비밀번호를 잃어버리면 %(APP_NAME)sì´ ë³µêµ¬í•´ì¤„ 수 ì—†ìŒì„ 숙지하였습니다.", - "i_saved_password": "ì•ˆì „í•œ ê³³ì— ë¹„ë°€ë²ˆí˜¸ë¥¼ 백업 í•´ ë‘었습니다.", - "update_password": "새 비밀번호 ì ìš©", - "confirm_password": "비밀번호 확ì¸", - "account_updated": "변경 사í•ì´ ì ìš© ë˜ì—ˆìŠµë‹ˆë‹¤.", - "password_must_be_characters_or_more": "패스워드는 %(amount)s ê¸€ìž ì´ìƒ ì´ì–´ì•¼ 합니다.", - "need_password_or_key": "ê°œì¸ ì•”í˜¸ ë˜ëŠ” 키 (공개 키 아님)ê°€ 필요합니다.", - "login_to_see_memo": "login to see memo", - "new_password": "새 비밀번호", - "incorrect_password": "ìž˜ëª»ëœ ë¹„ë°€ë²ˆí˜¸", - "username_does_not_exist": "존재하지 않는 ì‚¬ìš©ìž ê³„ì •", - "account_name_should_start_with_a_letter": "ê³„ì •ëª…ì€ ë°˜ë“œì‹œ 알파벳으로 시작해야 합니다.", - "account_name_should_be_shorter": "ê³„ì •ëª…ì´ ë„ˆë¬´ ê¹ë‹ˆë‹¤.", - "account_name_should_be_longer": "ê³„ì •ëª…ì´ ë„ˆë¬´ 짧습니다.", - "account_name_should_have_only_letters_digits_or_dashes": "ê³„ì •ëª…ì—는 알파벳과 숫ìž, 마침표, 대쉬만 사용 가능합니다.", - "cannot_increase_reward_of_post_within_the_last_minute_before_payout": "Payout ì „ 마지막 ìˆœê°„ì— ê²Œì‹œë¬¼ì— ëŒ€í•œ ë³´ìƒì„ 늘릴 수 없습니다.", - "vote_currently_exists_user_must_be_indicate_a_to_reject_witness": "vote currently exists, user must be indicate a desire to reject witness", - "only_one_APP_NAME_account_allowed_per_ip_address_every_10_minutes": "매 10 분마다 IP 주소 당 단 í•˜ë‚˜ì˜ Hive ê³„ì •ë§Œ 허용ë©ë‹ˆë‹¤.", - "write_your_story": "ë‚´ìš©ì„ ìž…ë ¥í•˜ì„¸ìš”", - "remember_voting_and_posting_key": "Remember voting & posting key", - "auto_login_question_mark": "ìžë™ 로그ì¸", - "hide_private_key": "ê°œì¸ í‚¤ 숨기기", - "show_private_key": "ê°œì¸ í‚¤ ë³´ì´ê¸°", - "login_to_show": "ë¡œê·¸ì¸ í•´ 확ì¸í•˜ê¸°", - "not_valid_email": "ìœ íš¨í•˜ì§€ ì•Šì€ ì´ë©”ì¼", - "thank_you_for_being_an_early_visitor_to_APP_NAME": "Thank you for being an early visitor to %(APP_NAME)s. We will get back to you at the earliest possible opportunity.", - "author_rewards": "ì €ìž ë³´ìƒ", - "curation_rewards": "íë ˆì´ì…˜ ë³´ìƒ", - "sorry_your_reddit_account_doesnt_have_enough_karma": "Sorry, your Reddit account doesn't have enough Reddit Karma to qualify for a free sign up. Please add your email for a place on the waiting list", - "register_with_facebook": "Register with Facebook", - "or_click_the_button_below_to_register_with_facebook": "Or click the button below to register with Facebook", - "server_returned_error": "서버 오류", - "APP_NAME_support": "%(APP_NAME)s Support", - "please_email_questions_to": "Please email your questions to", - "next_7_strings_single_block": { - "authors_get_paid_when_people_like_you_upvote_their_post": "ë³´íŒ…ì„ í†µí•´ 작가들ì—게 ê¸ˆì „ì ì¸ ì§€ì›ì„ 하실 수 있습니다.", - "if_you_enjoyed_what_you_read_earn_amount": "ì¦ê²ê²Œ ì½ìœ¼ì…¨ë‹¤ë©´ ì—¬ëŸ¬ë¶„ë„ ì§€ê¸ˆ 바로 가입하셔서 ê°€ìƒí™”í HIVE ì„ ë³´ìƒìœ¼ë¡œ 받으세요!", - "free_hive": "FREE HIVE!", - "sign_up_earn_hive": "Sign up now to earn " - }, - "next_3_strings_together": { - "show_more": "Show more", - "show_less": "Show fewer", - "value_posts": "low value posts" - }, - "read_only_mode": "서버 ì 검으로 ì¸í•œ ì½ê¸° ì „ìš© 모드입니다. ë¶ˆíŽ¸í•¨ì„ ë“œë ¤ 죄송합니다.", - "tags_and_topics": "태그", - "show_more_topics": "ëª¨ë“ íƒœê·¸ 보기", - "basic": "Basic", - "advanced": "Advanced", - "views": { - "zero": "ì½ì§€ 않ìŒ", - "one": "%(count)sëª…ì´ ìžƒìŒ", - "other": "%(count)sëª…ì´ ì½ìŒ" - }, - "responses": { - "zero": "댓글 ì—†ìŒ", - "one": "%(count)sê°œì˜ ëŒ“ê¸€", - "other": "%(count)sê°œì˜ ëŒ“ê¸€" - }, - "post_key_warning": { - "confirm": "HIVE ê°œì¸ í‚¤ ë˜ëŠ” 마스터 비밀번호를 ê²Œì‹œí•˜ë ¤ê³ í•©ë‹ˆë‹¤. ê´€ë ¨ëœ ê³„ì •ê³¼ ëª¨ë“ ìžì‚°ì— 대한 ì œì–´ê¶Œì„ ìƒì‹¤í•˜ê²Œ ë 것입니다.", - "warning": "Hiveì˜ ì§ì›ì„ í¬í•¨í•œ 합법ì ì¸ ì‚¬ìš©ìžëŠ” ì–´ë– í•œ 경우ì—ë„ ê°œì¸ í‚¤ ë˜ëŠ” 마스터 비밀번호를 요구하지 않습니다.", - "checkbox": "네 ì´í•´í•©ë‹ˆë‹¤." - }, - "post_as": "Post as", - "cannot_decrypt_memo": "현재 ë¡œê·¸ì¸ ë°©ë²•ìœ¼ë¡œ 메모를 í•´ë… í• ìˆ˜ 없습니다", - "cannot_encrypt_memo": "현재 ë¡œê·¸ì¸ ë°©ë²•ìœ¼ë¡œ 메모를 암호화 í• ìˆ˜ 없습니다" - }, - "navigation": { - "about": "스팀ì´ëž€?", - "explore": "태그별 현황", - "APP_NAME_whitepaper": "%(APP_NAME)s 백서", - "third_party_exchanges": "Third-party exchanges:", - "buy_LIQUID_TOKEN": "%(LIQUID_TOKEN)s 구매", - "sell_LIQUID_TOKEN": "%(LIQUID_TOKEN)s íŒë§¤", - "currency_market": "거래소", - "stolen_account_recovery": "ë„난 ê³„ì • 복구", - "change_account_password": "비밀번호 변경", - "witnesses": "ì¦ì¸", - "vote_for_witnesses": "ì¦ì¸ 투표", - "privacy_policy": "ê°œì¸ì •ë³´ 방침", - "terms_of_service": "ì´ìš© 약관", - "sign_up": "가입", - "learn_more": "ë” ì•Œì•„ë³´ê¸°", - "welcome": "환ì˜í•©ë‹ˆë‹¤!", - "faq": "ìžì£¼ 묻는 질문", - "chat": "스팀잇 채팅", - "app_center": "스팀잇 앱 센터", - "business_center": "Businesses Accepting Hive", - "api_docs": "스팀잇 API 문서", - "bluepaper": "스팀 블루페ì´í¼", - "smt_whitepaper": "SMT í™”ì´íŠ¸íŽ˜ì´í¼", - "whitepaper": "스팀 í™”ì´íŠ¸íŽ˜ì´í¼", - "jobs": "Jobs at Hive", - "hive_proposals": "Hive Proposals" - }, - "reply_editor": { - "shorten_title": "ì§§ì€ ì œëª©", - "exceeds_maximum_length": "최대 용량 초과 (%(maxKb)sKB)", - "including_the_category": " ('%(rootCategory)s' í¬í•¨)", - "use_limited_amount_of_tags": "You have %(tagsLength)s tags total%(includingCategory)s. Please use only 5 in your post and category line.", - "are_you_sure_you_want_to_clear_this_form": "Are you sure you want to exit the comment editor?", - "uploading": "Uploading", - "draft_saved": "임시 ì €ìž¥.", - "editor": "ì—디터", - "insert_images_by_dragging_dropping": "ì´ë¯¸ì§€ë¥¼ ì¶”ê°€í•˜ì‹œë ¤ë©´ 마우스로 ëŒì–´ë‹¤ê°€ 놓으시거나, ", - "pasting_from_the_clipboard": "í´ë¦½ë³´ë“œì—서 붙여넣기 하시거나, ", - "selecting_them": "ì§ì ‘ 업로드 하세요", - "image_upload": "사진 업로드", - "power_up_100": "100%% 스팀파워로 ìˆ˜ë ¹", - "default_50_50": "스팀파워 50%% + 스팀달러 50%%", - "decline_payout": "ë³´ìƒ ë°›ì§€ì•Šê¸°", - "check_this_to_auto_upvote_your_post": "ì´ ê¸€ì— ìžë™ìœ¼ë¡œ 업보팅", - "markdown_styling_guide": "Markdown 설명서", - "or_by": "혹ì€", - "title": "ì œëª©", - "update_post": "ì €ìž¥", - "markdown_not_supported": "Markdownì€ ì§€ì›ë˜ì§€ 않습니다.", - "advanced_settings": "Advanced settings" - }, - "category_selector_jsx": { - "tag_your_story": "태그는 최대 5개까지 ìž…ë ¥ í• ìˆ˜ 있습니다. ë©”ì¸ì´ ë 태그는 가장 ë¨¼ì € ìž…ë ¥í•˜ì„¸ìš”.", - "select_a_tag": "태그를 ì„ íƒí•˜ì„¸ìš”.", - "maximum_tag_length_is_24_characters": "태그는 24 글ìžê¹Œì§€ 가능합니다.", - "use_limited_amount_of_categories": "태그는 최대 %(amount)s ê°œ 까지 ìž…ë ¥ 가능합니다.", - "use_only_lowercase_letters": "소문ìžë§Œ 사용해 주세요.", - "use_one_dash": "대쉬는 한개만 사용 가능합니다.", - "use_spaces_to_separate_tags": "태그와 태그 사ì´ëŠ” 공백으로 구분 하세요.", - "use_only_allowed_characters": "소문ìž, ìˆ«ìž ê·¸ë¦¬ê³ ëŒ€ì‰¬ë§Œ 사용 가능합니다.", - "must_start_with_a_letter": "태그는 반드시 문ìžë¡œ 시작해야 합니다.", - "must_end_with_a_letter_or_number": "태그는 반드시 문ìžë‚˜ 숫ìžë¡œ ë나야 합니다." - }, - "post_advanced_settings_jsx": { - "payout_option_header": "Author rewards", - "payout_option_description": "What type of tokens do you want as rewards from this post?", - "current_default": "Default", - "update_default_in_settings": "Update" - }, - "postfull_jsx": { - "this_post_is_not_available_due_to_a_copyright_claim": "This post is not available due to a copyright claim.", - "share_on_facebook": "Facebookì— ê³µìœ ", - "share_on_twitter": "Twitterì— ê³µìœ ", - "share_on_reddit": "Share on Reddit", - "share_on_linkedin": "Linkedinì— ê³µìœ ", - "recent_password": "최근 비밀번호", - "in_week_convert_DEBT_TOKEN_to_LIQUID_TOKEN": "In 3.5 days, convert %(amount)s %(DEBT_TOKEN)s into %(LIQUID_TOKEN)s", - "view_the_full_context": "ì „ì²´ 글 보기", - "view_the_direct_parent": "ìƒìœ„ 댓글 보기", - "you_are_viewing_a_single_comments_thread_from": "You are viewing a single comment's thread from" - }, - "market_jsx": { - "action": "Action", - "date_created": "주문 ì¼ì‹œ", - "last_price": "현재 가격", - "24h_volume": "거래량(24H)", - "spread": "매ë„/매수 ê°", - "total": "HBD 계", - "available": "주문 가능 금액", - "lowest_ask": "ë§¤ë„ ì£¼ë¬¸ ìµœì €ê°€", - "highest_bid": "매수 주문 ìµœê³ ê°€", - "buy_orders": "매수 주문", - "sell_orders": "ë§¤ë„ ì£¼ë¬¸", - "trade_history": "거래 ì´ë ¥", - "open_orders": "미체결 주문", - "sell_amount_for_atleast": "%(min_to_receive)sì„ %(amount_to_sell)s로 íŒë§¤ í•˜ì‹œê² ìŠµë‹ˆê¹Œ? (%(effectivePrice)s)", - "buy_atleast_amount_for": "%(min_to_receive)sì„ %(amount_to_sell)s로 구매 í•˜ì‹œê² ìŠµë‹ˆê¹Œ? (%(effectivePrice)s)", - "price_warning_above": "This price is well above the current market price of %(marketPrice)s, are you sure?", - "price_warning_below": "This price is well below the current market price of %(marketPrice)s, are you sure?", - "order_cancel_confirm": "%(order_id)s ì£¼ë¬¸ì„ ì·¨ì†Œí•˜ì‹œê² ìŠµë‹ˆê¹Œ?", - "order_cancelled": "%(order_id)s ì£¼ë¬¸ì´ ì·¨ì†Œë˜ì—ˆìŠµë‹ˆë‹¤.", - "higher": "Higher", - "lower": "Lower", - "total_DEBT_TOKEN_SHORT_CURRENCY_SIGN": "Total %(DEBT_TOKEN_SHORT)s (%(CURRENCY_SIGN)s)", - "order_placed": "Order placed: %(order)s" - }, - "recoveraccountstep1_jsx": { - "begin_recovery": "Begin Recovery", - "not_valid": "Not valid", - "account_name_is_not_found": "Account name is not found", - "unable_to_recover_account_not_change_ownership_recently": "We are unable to recover this account, it has not changed ownership recently.", - "password_not_used_in_last_days": "This password was not used on this account in the last 30 days.", - "request_already_submitted_contact_support": "Your request has been already submitted and we are working on it. Please contact %(SUPPORT_EMAIL)s for the status of your request.", - "recover_account_intro": "From time to time, a Hiveian's owner key may be compromised. Stolen Account Recovery gives the rightful account owner 30 days to recover their account from the moment the thief changed their owner key. Stolen Account Recovery can only be used on %(APP_URL)s if the account owner had previously listed '%(APP_NAME)s' as their account trustee and complied with %(APP_NAME)s's Terms of Service.", - "login_with_facebook_or_reddit_media_to_verify_identity": "Please login with Facebook or Reddit to verify your identity", - "login_with_social_media_to_verify_identity": "Please login with %(provider)s to verify your identity", - "enter_email_toverify_identity": "We need to verify your identity. Please enter your email address below to begin the verification.", - "continue_with_email": "Continue with Email", - "thanks_for_submitting_request_for_account_recovery": "Thanks for submitting your request for Account Recovery using %(APP_NAME)s's blockchain-based multi factor authentication. We will respond to you as quickly as possible, however, please expect there may be some delay in response due to high volume of emails. Please be prepared to verify your identity.", - "recovering_account": "Recovering account", - "recover_account": "Recover Account", - "checking_account_owner": "Checking account owner", - "sending_recovery_request": "Sending recovery request", - "cant_confirm_account_ownership": "We can't confirm account ownership. Check your password", - "account_recovery_request_not_confirmed": "Account recovery request is not confirmed yet, please get back later, thank you for your patience." - }, - "user_profile": { - "unknown_account": "Unknown Account", - "create_a_post": "글쓰기", - "explore_trending_articles": "대세글 ì½ì–´ë³´ê¸°", - "read_the_quick_start_guide": "ë¹ ë¥¸ 시작 ê°€ì´ë“œ", - "browse_the_faq": "ìžì£¼ 찾는 질문", - "followers": "팔로워", - "this_is_users_reputations_score_it_is_based_on_history_of_votes": "ì´ê²ƒì€ %(name)së‹˜ì˜ í‰íŒ ì 수입니다.\n\ní‰íŒ ì 수는 %(name)së‹˜ì´ ë°›ì€ ë³´íŒ… 기ë¡ì— 기반합니다. ì´ í‰íŒ ì 수는 ì§ˆì´ ë‚˜ìœ ì½˜í…ì¸ ë¥¼ ê°€ë ¤ë‚´ê¸° 위해 사용ë©ë‹ˆë‹¤.", - "show_all": "Show All" - }, - "authorrewards_jsx": { - "estimated_author_rewards_last_week": "ì´ë²ˆ 주 ì˜ˆìƒ ì €ìž ë³´ìƒê¸ˆì•¡", - "author_rewards_history": "ì €ìž ë³´ìƒ ë‚´ì—" - }, - "curationrewards_jsx": { - "estimated_curation_rewards_last_week": "ì´ë²ˆì£¼ ì˜ˆìƒ íë ˆì´ì…˜ ë³´ìƒê¸ˆì•¡", - "curation_rewards_history": "íë ˆì´ì…˜ ë³´ìƒ ë‚´ì—" - }, - "post_jsx": { - "now_showing_comments_with_low_ratings": "Now showing comments with low ratings", - "sort_order": "ì •ë ¬ 순서", - "comments_were_hidden_due_to_low_ratings": "Comments were hidden due to low ratings", - "comment_sort_order": { - "trending": "Trending", - "votes": "Votes", - "age": "Age", - "reputation": "Reputation" - } - }, - "voting_jsx": { - "flagging_post_can_remove_rewards_the_flag_should_be_used_for_the_following": "다운 ë³´íŒ…ì„ í•˜ì‹œë©´ ë³´ìƒì•¡ì„ ì—†ì• ê³ , 해당 ê²Œì‹œë¬¼ì„ ëˆˆì— ëœ ë„게 만들 수 있습니다. 다운 보팅 ì‚¬ìœ ëŠ” 다ìŒê³¼ 같습니다.", - "disagreement_on_rewards": "ë™ì˜í• 수 ì—†ì„ ì •ë„로 지나치게 ë§Žì€ ë³´ìƒì•¡", - "fraud_or_plagiarism": "사기 í˜¹ì€ í‘œì ˆ", - "hate_speech_or_internet_trolling": "ì¦ì˜¤ ë° í˜ì˜¤ 발언, 악플과 비난 게시물", - "intentional_miss_categorized_content_or_spam": "ì˜ë„ì ì¸ íƒœê·¸ 오용 í˜¹ì€ ìŠ¤íŒ¸", - "pending_payout": "ì˜ˆìƒ ë³´ìƒê¸ˆì•¡: $%(value)s", - "payout_declined": "ë³´ìƒì„ 사양함", - "max_accepted_payout": "최대 허용 ë³´ìƒì•¡ $%(value)s", - "promotion_cost": "í™ë³´ 비용 $%(value)s", - "past_payouts": "ì§€ê¸‰ëœ ë³´ìƒ $%(value)s", - "past_payouts_author": " - ì €ìž $%(value)s", - "past_payouts_curators": " - íë ˆì´í„° $%(value)s", - "removing_your_vote": "보팅 취소", - "removing_your_vote_will_reset_curation_rewards_for_this_post": "Removing your vote will reset your curation rewards for this post", - "changing_to_an_upvote": "Changing to an Up-Vote", - "changing_to_an_upvote_will_reset_curation_rewards_for_this_post": "Changing to an Up-Vote will reset your curation rewards for this post", - "changing_to_a_downvote": "Changing to a Down-Vote", - "changing_to_a_downvote_will_reset_curation_rewards_for_this_post": "Changing to a Down-Vote will reset your curation rewards for this post", - "confirm_flag": "Confirm Flag", - "and_more": "and %(count)s more", - "votes_plural": { - "one": "%(count)s 보팅", - "other": "%(count)s 보팅" - }, - "we_will_reset_curation_rewards_for_this_post": "will reset your curation rewards for this post" - }, - "witnesses_jsx": { - "witness_thread": "witness thread", - "external_site": "external site", - "disabled": "disabled", - "top_witnesses": "ì¦ì¸ 투표", - "you_have_votes_remaining": { - "zero": "ë”ì´ìƒ 투표 하실 수 없습니다.", - "one": "현재 1명ì—게 투표하실 수 있습니다.", - "other": "현재 %(count)s명ì—게 투표하실 수 있습니다." - }, - "you_can_vote_for_maximum_of_witnesses": "최대 30명ì—게 투표하실 수 있습니다.", - "witness": "ì¦ì¸", - "information": "Information", - "if_you_want_to_vote_outside_of_top_enter_account_name": "ìƒìœ„ 100위권 ë°–ì— ê³„ì‹ ë¶„ì—게 ì¦ì¸ 투표를 í•˜ì‹œë ¤ë©´ 아래 ì¹¸ì— í•´ë‹¹í•˜ëŠ” ë¶„ì˜ ê³„ì •ëª…ì„ ìž…ë ¥í•˜ì„¸ìš”.", - "set_witness_proxy": "You can also choose a proxy that will vote for witnesses for you. This will reset your current witness selection.", - "witness_set": "ì´ë¯¸ 투표 위임 ì„¤ì •ì„ í•˜ì…¨ìŠµë‹ˆë‹¤. 다시 ì¦ì¸ 투표를 í•˜ì‹œë ¤ë©´ ìœ„ìž„ì„ ì² íšŒí•˜ì‹ì‹œì˜¤.", - "witness_proxy_current": "ë‹¹ì‹ ì˜ íˆ¬í‘œ ê¶Œí•œì„ ìœ„ìž„í•œ ì¦ì¸: ", - "witness_proxy_set": "위임 ì„¤ì •", - "witness_proxy_clear": "위임 ì² íšŒ", - "proxy_update_error": "Your proxy was not updated" - }, - "votesandcomments_jsx": { - "no_responses_yet_click_to_respond": "ëŒ“ê¸€ì´ ì—†ìŠµë‹ˆë‹¤. ëŒ“ê¸€ì„ ìž‘ì„±í•˜ì‹œë ¤ë©´ í´ë¦í•˜ì„¸ìš”.", - "response_count_tooltip": { - "zero": "ëŒ“ê¸€ì´ ì—†ìŠµë‹ˆë‹¤. ëŒ“ê¸€ì„ ìž‘ì„±í•˜ì‹œë ¤ë©´ í´ë¦í•˜ì„¸ìš”.", - "one": "í•œê°œì˜ ëŒ“ê¸€ì´ ìžˆìŠµë‹ˆë‹¤. ëŒ“ê¸€ì„ ìž‘ì„±í•˜ì‹œë ¤ë©´ í´ë¦í•˜ì„¸ìš”.", - "other": "%(count)sê°œì˜ ëŒ“ê¸€ì´ ìžˆìŠµë‹ˆë‹¤. ëŒ“ê¸€ì„ ìž‘ì„±í•˜ì‹œë ¤ë©´ í´ë¦í•˜ì„¸ìš”." - }, - "vote_count": { - "zero": "추천 ì—†ìŒ", - "one": "1ê°œì˜ ì¶”ì²œ", - "other": "%(count)sê°œì˜ ì¶”ì²œ" - } - }, - "userkeys_jsx": { - "public": "공개", - "private": "ê°œì¸", - "public_something_key": "공개 %(key)s 키", - "private_something_key": "ê°œì¸ %(key)s 키", - "posting_key_is_required_it_should_be_different": "í¬ìŠ¤íŒ… 키는 새 ê¸€ì„ ìž‘ì„±í•˜ê±°ë‚˜ 다른 회ì›ì˜ ê¸€ì— ë³´íŒ…í• ë•Œ 필요합니다. 액티브 키나 오너 키와는 달ë¼ì•¼ 합니다.", - "the_active_key_is_used_to_make_transfers_and_place_orders": "액티브 키는 스팀 달러나 ìŠ¤íŒ€ì„ ë‹¤ë¥¸ ì´ì—게 ì „ì†¡í•˜ê±°ë‚˜ ë‚´ë¶€ 마켓ì—서 거래를 í• ë•Œ 필요합니다.", - "the_owner_key_is_required_to_change_other_keys": "오너키는 마스터패스워드와 다릅니다. 다른키(í¬ìŠ¤íŒ…,액티브,오너) 를 바꿀 때 필요합니다.", - "the_private_key_or_password_should_be_kept_offline": "ê°œì¸ í‚¤ì™€ 오너 í‚¤ì˜ ë¹„ë°€ë²ˆí˜¸ëŠ” 가능한 ë§Žì´ ì˜¤í”„ë¼ì¸ì— ì €ìž¥í•´ë‘세요.", - "the_memo_key_is_used_to_create_and_read_memos": "메모 키는 사ì ì¸ ë©”ëª¨ë¥¼ 작성하거나 ì½ì„ 때 필요합니다." - }, - "suggestpassword_jsx": { - "APP_NAME_cannot_recover_passwords_keep_this_page_in_a_secure_location": "%(APP_NAME)s cannot recover passwords. Keep this page in a secure location, such as a fireproof safe or safety deposit box.", - "APP_NAME_password_backup": "%(APP_NAME)s Password Backup", - "APP_NAME_password_backup_required": "%(APP_NAME)s Password Backup (required)", - "after_printing_write_down_your_user_name": "After printing, write down your user name" - }, - "converttohive_jsx": { - "your_existing_DEBT_TOKEN_are_liquid_and_transferable": "Your existing %(DEBT_TOKEN)s are liquid and transferable. Instead you may wish to trade %(DEBT_TOKEN)s directly in this site under %(link)s or transfer to an external market.", - "this_is_a_price_feed_conversion": "This is a price feed conversion. The 3.5 day delay is necessary to prevent abuse from gaming the price feed average", - "convert_to_LIQUID_TOKEN": "%(LIQUID_TOKEN)s 으로 ì „í™˜", - "DEBT_TOKEN_will_be_unavailable": "This action will take place 3.5 days from now and can not be canceled. These %(DEBT_TOKEN)s will immediately become unavailable" - }, - "tips_js": { - "liquid_token": "êµí™˜ê³¼ ì†¡ê¸ˆì´ ê°€ëŠ¥í•œ í† í°ìž…니다.<br/> íŒŒì›Œì—…ì„ í†µí•´ %(LIQUID_TOKEN)sì„ %(VESTING_TOKEN)s으로 ì „í™˜ 하실 수 있습니다.", - "influence_token": "스팀잇ì—ì„œì˜ ì˜í–¥ë ¥ì„ 나타냅니다. 스팀 파워가 높ì„ìˆ˜ë¡ ë³´íŒ… ê¸ˆì•¡ì´ ë” ë†’ì•„ì§€ê³ , íë ˆì´ì…˜ ë³´ìƒë„ ë” ë§Žì´ ë°›ì„ ìˆ˜ 있습니다.", - "estimated_value": "%(LIQUID_TOKEN)sì˜ í‰ê· ê°€ê²©ì„ US달러로 환산한 기준입니다.", - "non_transferable": "%(VESTING_TOKEN)s는 ì „ì†¡ì´ ë¶ˆê°€ëŠ¥í•˜ë©°, 다시 %(LIQUID_TOKEN)s으로 ì „í™˜í•˜ê¸° 위해서는 3ë‹¬ì´ ì†Œìš”ë©ë‹ˆë‹¤. (13회로 나누어 ì „í™˜ ë©ë‹ˆë‹¤)", - "converted_VESTING_TOKEN_can_be_sent_to_yourself_but_can_not_transfer_again": "Converted %(VESTING_TOKEN)s can be sent to yourself or someone else but can not transfer again without converting back to %(LIQUID_TOKEN)s.", - "part_of_your_hive_power_is_currently_delegated": "%(user_name)s ë‹˜ì€ HIVE POWER 를 임대 ë°›ê³ ìžˆìŠµë‹ˆë‹¤. 임대 받는 ì–‘ì€ ê°€ìž… ì‹œê¸°ì— ë”°ë¼ ê°€ë³€ì 입니다.", - "hive_power_apr": "HIVE POWER increases at an APR of approximately %(value)s%, subject to blockchain variance. <a href=\"/faq.html#How_many_new_tokens_are_generated_by_the_blockchain\">See FAQ for details</a>." - }, - "promote_post_jsx": { - "promote_post": "Promote Post", - "spend_your_DEBT_TOKEN_to_advertise_this_post": "%(DEBT_TOKEN)s를 지불하시면 'í™ë³´ê¸€' ì½”ë„ˆì— ê²Œì‹œë¬¼ì´ ì˜¬ë¼ê°‘니다.", - "you_successfully_promoted_this_post": "í™ë³´ 하였습니다.", - "this_post_was_hidden_due_to_low_ratings": "ë‹¤ìš´ë³´íŒ…ì— ì˜í•´ 블ë¼ì¸ë“œ 처리 ë˜ì—ˆìŠµë‹ˆë‹¤." - }, - "about_jsx": { - "about_app": "About %(APP_NAME)s", - "about_app_details": "%(APP_NAME)s is a social media platform where everyone gets paid for creating and curating content. It leverages a robust digital points system, called Hive, that supports real value for digital rewards through market price discovery and liquidity.", - "learn_more_at_app_url": "Learn more at %(APP_URL)s", - "resources": "Resources" - }, - "markdownviewer_jsx": { - "images_were_hidden_due_to_low_ratings": "Images were hidden due to low ratings." - }, - "transferhistoryrow_jsx": { - "to_savings": "to savings", - "from_savings": "from savings", - "cancel_transfer_from_savings": "Cancel transfer from savings", - "stop_power_down": "파워 다운 중지", - "withdraw_vesting": "Start power down of %(powerdown_vests)s HIVE", - "start_power_down_of": "Start power down of", - "receive_interest_of": "Receive interest of", - "bad_actor_caution": "Caution", - "bad_actor_explained": "This is from an account that looks fraudulent. If you wish, you may temporarily reveal this memo which may contain dangerous links.", - "bad_actor_reveal_memo": "I understand the risk; show anyway.", - "from_negative_rep_user_caution": "Caution", - "from_negative_rep_user_explained": "This is from an account with a bad reputation. If you wish, you may temporarily reveal this memo which may contain dangerous links.", - "from_negative_rep_user_reveal_memo": "I understand the risk; show anyway.", - "curation_reward": "%(curation_reward)s HIVE POWER for ", - "author_reward": "%(hbd_payout)s%(hive_payout)s and %(author_reward)s HIVE POWER for ", - "claim_reward_balance": { - "three_rewards": "Claim rewards: %(first_reward)s, %(second_reward)s and %(third_reward)s", - "two_rewards": "Claim rewards: %(first_reward)s and %(second_reward)s", - "one_reward": "Claim rewards: %(reward)s" - }, - "interest": "Receive interest of %(interest)s", - "fill_convert_request": "Fill convert request: %(amount_in)s for %(amount_out)s", - "fill_order": { - "filled_by_current_owner": "Paid %(open_pays)s for %(current_pays)s", - "open_owner_filled_my_order": "Paid %(current_pays)s for %(open_pays)s" - }, - "comment_benefactor_reward": "%(benefactor_reward)s HIVE POWER for %(author)s/%(permlink)s", - "transfer_to_vesting": { - "from_self": { - "no_to": "Transfer %(amount)s to HIVE POWER", - "to_someone": "Transfer %(amount)s HIVE POWER to " - }, - "to_self": "Receive %(amount)s HIVE POWER from ", - "from_user_to_user": " Transfer %(amount)s HIVE POWER from %(from) to " - }, - "transfer": { - "from_self": { - "to_savings": "Transfer to savings %(amount)s to ", - "from_savings": "Transfer from savings %(amount)s to ", - "not_savings": "Transfer %(amount)s to " - }, - "to_self": { - "to_savings": "Receive from savings %(amount)s from ", - "from_savings": "Transfer from savings %(amount)s from ", - "not_savings": "Received %(amount)s from " - }, - "to_someone_from_someone": { - "to_savings": "Transfer to savings %(amount)s from %(from)s to %(to)s", - "from_savings": "Transfer from savings %(amount)s from %(from)s to %(to)s", - "not_savings": "Transfer %(amount)s from %(from)s to %(to)s" - } - }, - "request_id": "Request ID: %(request_id)s" - }, - "savingswithdrawhistory_jsx": { - "cancel_this_withdraw_request": "출금 ìš”ì²ì„ ì·¨ì†Œí•˜ì‹œê² ìŠµë‹ˆê¹Œ?", - "pending_savings_withdrawals": "출금 ì§„í–‰ 중", - "withdraw": "%(amount)s 출금: ", - "to": "%(to)s로 ì „ì†¡", - "from_to": "%(from)s ì—서 %(to)s로 ì „ì†¡" - }, - "explorepost_jsx": { - "copied": "Copied!", - "copy": "COPY", - "alternative_sources": "Alternative Sources" - }, - "header_jsx": { - "home": "home", - "change_account_password": "Change Account Password", - "create_account": "Create Account", - "stolen_account_recovery": "Stolen Account Recovery", - "people_following": "People following", - "people_followed_by": "People followed by", - "curation_rewards_by": "Curation rewards by", - "author_rewards_by": "Author rewards by", - "replies_to": "Replies to", - "comments_by": "Comments by", - "hive_proposals": "Hive Proposals" - }, - "loginform_jsx": { - "you_need_a_private_password_or_key": "You need a private password or key (not a public key)", - "cryptography_test_failed": "Cryptography test failed", - "unable_to_log_you_in": "We will be unable to log you in with this browser.", - "the_latest_versions_of": "The latest versions of ", - "are_well_tested_and_known_to_work_with": "are well tested and known to work with %(APP_URL)s.", - "due_to_server_maintenance": "Due to server maintenance we are running in read only mode. We are sorry for the inconvenience.", - "login_to_vote": "Login to Vote", - "login_to_post": "Login to Post", - "login_to_comment": "Login to Comment", - "posting": "Posting", - "active_or_owner": "Active or Owner", - "this_password_is_bound_to_your_account_owner_key": "This password is bound to your account's owner key and can not be used to login to this site.", - "however_you_can_use_it_to": "However, you can use it to ", - "update_your_password": "update your password", - "to_obtain_a_more_secure_set_of_keys": "to obtain a more secure set of keys.", - "this_password_is_bound_to_your_account_active_key": "This password is bound to your account's active key and can not be used to login to this page.", - "you_may_use_this_active_key_on_other_more": "You may use this active key on other more secure pages like the Wallet or Market pages.", - "you_account_has_been_successfully_created": "You account has been successfully created!", - "you_account_has_been_successfully_recovered": "You account has been successfully recovered!", - "password_update_success": "The password for %(accountName)s was successfully updated", - "password_info": "암호 ë˜ëŠ” ê°œì¸í‚¤ê°€ 잘못 ìž…ë ¥ë˜ì—ˆìŠµë‹ˆë‹¤. 타ìžìž…ë ¥ì˜ ì‹¤ìˆ˜ ë˜ëŠ” ë°ì´í„° ìž…ë ¥ì˜ ì˜¤ë¥˜ì¼ ìˆ˜ 있습니다. 힌트: hive.blog ì—서 ìƒì„±ëœ 암호 ë˜ëŠ” ê°œì¸í‚¤ì—는 0(ìˆ«ìž 0), O(ì˜ë¬¸ìžO), I(대문ìžI), l(ì†Œë¬¸ìž L)ì„ ì ˆëŒ€ë¡œ í¬í•¨í•˜ì§€ 않습니다.", - "enter_your_username": "Enter your username", - "enter_hive_key": "Enter a Hive key (ideally your Posting Key)", - "password_or_wif": "Password or WIF", - "this_operation_requires_your_key_or_master_password": "ì´ ìž‘ì—…ì€ %(authType)s 키 ë˜ëŠ” 마스터 비밀번호가 필요합니다.", - "keep_me_logged_in": "ë¡œê·¸ì¸ ìœ ì§€", - "signup_button": "Sign up now to earn ", - "signup_button_emphasis": "FREE HIVE!", - "sign_up_get_hive": "ê³„ì •ì„ ë§Œë“¤ê³ ê°€ìƒí™”í HIVE ì„ ë³´ìƒìœ¼ë¡œ 받으세요.", - "returning_users": "Returning Users: ", - "login_to_wallet": "Login to Wallet", - "sign_transfer": "Sign to complete transfer", - "use_keychain": "Use keychain extension", - "dont_have_an_account": "Don't have a Hive account?", - "more_login_methods": "ë” ë§Žì€ ë¡œê·¸ì¸ ë°©ë²•" - }, - "chainvalidation_js": { - "account_name_should_not_be_empty": "Account name should not be empty.", - "account_name_should_be_longer": "Account name should be longer.", - "account_name_should_be_shorter": "Account name should be shorter.", - "each_account_segment_should_start_with_a_letter": "Each account segment should start with a letter.", - "each_account_segment_should_have_only_letters_digits_or_dashes": "Each account segment should have only letters, digits, or dashes.", - "each_account_segment_should_have_only_one_dash_in_a_row": "Each account segment should have only one dash in a row.", - "each_account_segment_should_end_with_a_letter_or_digit": "Each account segment should end with a letter or digit.", - "each_account_segment_should_be_longer": "Each account segment should be longer.", - "verified_exchange_no_memo": "You must include a memo for your exchange transfer.", - "badactor": "Use caution sending to this account. Please double check your spelling for possible phishing.", - "memo_has_privatekey": "Please do not include what appears to be a private key or password.", - "memo_is_privatekey": "Do not use private keys in memos.", - "memo_is_password": "Do not use passwords in memos.", - "account_name_should": "Account name should ", - "not_be_empty": "not be empty.", - "be_longer": "be longer.", - "be_shorter": "be shorter.", - "each_account_segment_should": "Each account segment should ", - "start_with_a_letter": "start with a letter.", - "have_only_letters_digits_or_dashes": "have only letters, digits, or dashes.", - "have_only_one_dash_in_a_row": "have only one dash in a row.", - "end_with_a_letter_or_digit": "end with a letter or digit." - }, - "settings_jsx": { - "invalid_url": "ìž˜ëª»ëœ URL 입니다", - "name_is_too_long": "너무 긴 ì‚¬ìš©ìž ì´ë¦„입니다", - "name_must_not_begin_with": "ì‚¬ìš©ìž ì´ë¦„ì€ ë°˜ë“œì‹œ @로 시작해야 합니다", - "about_is_too_long": "About is too long", - "location_is_too_long": "너무 긴 ì§€ì—명입니다", - "website_url_is_too_long": "너무 긴 웹사ì´íЏ URL입니다", - "public_profile_settings": "공개 í”„ë¡œíŒŒì¼ ì„¤ì •", - "preferences": "컨í…ì¸ í‘œì‹œ ì„¤ì •", - "not_safe_for_work_nsfw_content": "ì„ ì •ì ì´ê±°ë‚˜ íë ¥ì ì¸ ì»¨í…ì¸ ", - "always_hide": "í•ìƒ ìˆ¨ê¸°ê¸°", - "always_warn": "í•ìƒ ê²½ê³ í•˜ê¸°", - "always_show": "í•ìƒ ë³´ì´ê¸°", - "choose_default_blog_payout": "Blog post rewards", - "choose_default_comment_payout": "Comment post rewards", - "muted_users": "ë‚´ê°€ 차단한 사용ìž", - "update": "ì €ìž¥", - "upload_image": "Upload an image", - "uploading_image": "Uploading image", - "profile_image_url": "í”„ë¡œíŒŒì¼ ì‚¬ì§„ 경로", - "cover_image_url": "커버ì´ë¯¸ì§€ 사진 경로", - "profile_name": "닉네임", - "profile_about": "한 줄 소개", - "profile_location": "ì§€ì—", - "profile_website": "웹사ì´íЏ", - "saved": "Saved!" - }, - "transfer_jsx": { - "amount_is_in_form": "Amount is in the form 99999.999", - "insufficient_funds": "ìž”ê³ ë¶€ì¡±", - "use_only_3_digits_of_precison": "최대 소수ì 3ìžë¦¬ê¹Œì§€ ìž…ë ¥ 가능", - "send_to_account": "Send to account", - "asset": "Asset", - "this_memo_is_private": "공개ë˜ì§€ 않는 메모입니다.", - "this_memo_is_public": "모ë‘ì—게 공개ë˜ëŠ” 메모입니다.", - "convert_to_VESTING_TOKEN": "Convert to %(VESTING_TOKEN)s", - "balance_subject_to_3_day_withdraw_waiting_period": "3ì¼ê°„ì˜ ì˜ˆì¹˜ê¸°ê°„ì´ ì§€ë‚˜ì•¼ 출금하실 수 있으며, ", - "move_funds_to_another_account": "다른 Hive 계좌로 송금", - "protect_funds_by_requiring_a_3_day_withdraw_waiting_period": "ê¸ˆê³ ë³´ê´€ 시 ì¶œê¸ˆì— 3ì¼ì˜ ì˜ˆì¹˜ê¸°ê°„ì´ ì†Œìš”ë©ë‹ˆë‹¤.", - "withdraw_funds_after_the_required_3_day_waiting_period": "출금 시 3ì¼ì˜ ì˜ˆì¹˜ê¸°ê°„ì´ ì†Œìš”ë©ë‹ˆë‹¤.", - "from": "From", - "to": "To", - "asset_currently_collecting": "%(asset)sì˜ ì—°ì´ìœ¨ì€ 현재 %(interest)s%% 입니다.", - "beware_of_spam_and_phishing_links": "메모ì—는 스팸과 피싱 ë§í¬ê°€ í¬í•¨ ë 수 있으니 주ì˜í•˜ì‹ì‹œì˜¤. ì‹ ë¢°í• ìˆ˜ì—†ëŠ” 사용ìžì˜ ë§í¬ë¥¼ ì—´ì§€ 마ì‹ì‹œì˜¤. ë˜í•œ 다른 ì–´ë–¤ 웹 사ì´íЏì—ë„ ê°œì¸í‚¤ë¥¼ 공개하지 마ì‹ì‹œì˜¤.", - "transactions_make_take_a_few_minutes": "Transactions will not show until they are confirmed on the blockchain, which may take a few minutes.", - "autocomplete_previous_transfers": "previous transfers", - "autocomplete_user_following": "following", - "confirm_transfer": "Transfer %(amount)s from %(from)s to %(to)s?" - }, - "userwallet_jsx": { - "transfer": "Transfer", - "conversion_complete_tip": "Will complete on", - "in_conversion": "%(amount)s in conversion", - "transfer_to_savings": "ê¸ˆê³ ë¡œ ì „ì†¡", - "power_up": "파워 ì—…", - "power_down": "파워 다운", - "market": "거래소", - "convert_to_LIQUID_TOKEN": "%(LIQUID_TOKEN)s 으로 ì „í™˜", - "withdraw_LIQUID_TOKEN": "%(LIQUID_TOKEN)s 출금", - "withdraw_DEBT_TOKENS": "%(DEBT_TOKENS)s 출금", - "tokens_worth_about_1_of_LIQUID_TICKER": "%(LIQUID_TICKER)sì˜ 1달러 가치가 있는 í† í°ìž…니다. 현재 ì—°ì´ìœ¨ì€ %(hbdInterest)s%% 입니다.", - "tradeable_tokens_transferred": "Tradeable tokens that may be transferred anywhere at anytime.", - "savings": "예금", - "estimated_account_value": "ì¶”ì • ìžì‚°ê°€ì¹˜", - "next_power_down_is_scheduled_to_happen": "ë‹¤ìŒ íŒŒì›Œë‹¤ìš´ ì˜ˆì •:", - "transfers_are_temporary_disabled": "현재 ì¼ì‹œì ì¸ ì´ìœ 로 ì†¡ê¸ˆì´ ë¶ˆê°€ëŠ¥í•©ë‹ˆë‹¤.", - "history": "거래 ë‚´ì—", - "redeem_rewards": "ë‚´ 지갑으로 입금하기", - "buy_hive_or_hive_power": "HIVE, HIVE POWER 구입" - }, - "powerdown_jsx": { - "power_down": "파워 다운", - "amount": "목표량", - "already_power_down": "ì´ë¯¸ %(AMOUNT)s %(LIQUID_TICKER)sì˜ íŒŒì›Œ ë‹¤ìš´ì„ ì§„í–‰í•˜ê³ ìžˆìŠµë‹ˆë‹¤(현재까지 %(WITHDRAWN)s %(LIQUID_TICKER)s 파워 다운). 파워다운 ìˆ˜ëŸ‰ì„ ë³€ê²½í•˜ê²Œ ë˜ë©´ 파워 다운 ì¼ì •ì´ ì´ˆê¸°í™”ë˜ë‹ˆ ìœ ì˜í•˜ì‹ì‹œì˜¤..", - "delegating": "현재 %(AMOUNT)s %(LIQUID_TICKER)sì„ ìž„ëŒ€ 중입니다. ì´ ìˆ˜ëŸ‰ì€ ìž„ëŒ€ 종료 후 회수 ê¸°ê°„ì´ ì™„ì „ížˆ ì§€ë‚ ë•Œê¹Œì§€ëŠ” 파워 ë‹¤ìš´ì„ í• ìˆ˜ 없습니다.", - "per_week": "That's ~%(AMOUNT)s %(LIQUID_TICKER)s per week.", - "warning": "%(VESTING_TOKEN)sê°€ %(AMOUNT)s ì´í•˜ë¡œ ë‚´ë ¤ê°€ë©´ ê³„ì •ì˜ ì‚¬ìš©ì— ì œì•½ì´ ìƒê¹ë‹ˆë‹¤.", - "error": "파워다운 실패: %(MESSAGE)s" - }, - "checkloginowner_jsx": { - "your_password_permissions_were_reduced": "Your password permissions were reduced", - "if_you_did_not_make_this_change": "If you did not make this change please", - "ownership_changed_on": "Ownership Changed On ", - "deadline_for_recovery_is": "Deadline for recovery is", - "i_understand_dont_show_again": "ì´ ë©”ì‹œì§€ë¥¼ 다시 ë³´ì§€ 않기" - }, - "termsagree_jsx": { - "please_review": "Please review our terms to continue", - "hi_user": "Hi %(username)s,", - "blurb": "Our Terms of Service set the rules and guidelines that you must accept and follow in order to use Hive and our Privacy Policy explains the type of information we collect and what we do with it. Don't worry, we don't sell your data to anyone. We do use it to meet legal requirements and to learn how to make Hive better.", - "i_agree_to_hiveblogs": "I agree to Hive.blog's", - "terms_of_service": "Terms of Service", - "privacy_policy": "Privacy Policy", - "continue": "Continue", - "cancel": "Cancel" - }, - "confirmtransactionform_jsx": { - "confirm": "Confirm %(transactionType)s" - }, - "modals_jsx": { - "your_transaction_failed": "Your transaction failed to process", - "out_of_bandwidth_title": "Why? You've run out of Resource Credits", - "out_of_bandwidth_reason": "Actions such as posting and voting use computing resources, placing a real cost on the community members who run the Hive blockchain for everyone.", - "out_of_bandwidth_reason_2": "To keep things free, Hive intelligently allocates Resource Credits to each user based on their Hive Power holdings, which can be used to submit a limited number of feeless transactions. When a user runs low on Resource Credits, they will either need to wait for them to recharge, or purchase additional Hive Power. This system prioritizes actions by good community members while limiting spam.", - "out_of_bandwidth_option_title": "To keep interacting on Hive:", - "out_of_bandwidth_option_1": "Buy and hold more Hive Power", - "out_of_bandwidth_option_2": "Wait until your Resource Credits recharge", - "out_of_bandwidth_option_3": "Wait until the network usage decreases" - }, - "sanitizedlink_jsx": { - "phishylink_caution": "Link hidden; phishing attempt", - "phishylink_reveal": "show link" - }, - "wallet_index": { - "title": "Hive wallet login", - "description": "Welcome to Hive's official Hive blockchain wallet. Use it to transfer Hive tokens, Power up, vote for Hive Witnesses and change your Hive profile details.", - "login": "Login", - "hive_tokens": "Hive tokens", - "hive_symbol": "HIVE", - "hive_description": "Liquid platform token", - "hive_power_symbol": "HIVE Power", - "hive_power_description": "Vesting influence token", - "hbd_symbol": "HBD", - "hbd_description": "Seeks price stability with USD" - }, - "hive_proposals": { - "top_sps": "Hive Proposals", - "votes_update_info": "* Only updated once per hour", - "table": { - "id": "Id", - "creator": "Creator", - "receiver": "Receiver", - "start_date": "Start Date", - "end_date": "End Date", - "daily_pay": "Daily Pay", - "total_votes": "Total Votes*", - "permlink": "", - "subject": "Subject" - }, - "confirm_remove_proposal_description": "Proposal removal is permanent and the fee paid for creating the proposal is not refundable." - } -} diff --git a/src/app/locales/pl.json b/src/app/locales/pl.json index e30edf696723fe3f5aeeff1b9b25b03d60d2b17a..64f02d5b0b9490de81090156d139234ae1e0464e 100644 --- a/src/app/locales/pl.json +++ b/src/app/locales/pl.json @@ -625,7 +625,7 @@ "each_account_segment_should_end_with_a_letter_or_digit": "Each account segment should end with a letter or digit.", "each_account_segment_should_be_longer": "Each account segment should be longer.", "verified_exchange_no_memo": "Musisz dodać memo w swoim transferze.", - "badactor": "Use caution sending to this account. Please double check your spelling for possible phishing.", + "badactor": "Potential scam attempt, destination address on a Bad Actor List, transfer prohibited!", "memo_has_privatekey": "Please do not include what appears to be a private key or password.", "memo_is_privatekey": "Do not use private keys in memos.", "memo_is_password": "Do not use passwords in memos.", diff --git a/src/app/locales/ru.json b/src/app/locales/ru.json index 72fff3811a25e5d9ad4591dfaeb36fc38dfbb7c9..aad6153a096483c9d4e418ebc6b3543f42cd61c5 100644 --- a/src/app/locales/ru.json +++ b/src/app/locales/ru.json @@ -636,7 +636,7 @@ "each_account_segment_should_end_with_a_letter_or_digit": "Each account segment should end with a letter or digit.", "each_account_segment_should_be_longer": "Each account segment should be longer.", "verified_exchange_no_memo": "Ð”Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ð¾Ð´Ð° на биржу Ð’Ñ‹ должны указать примечание.", - "badactor": "Use caution sending to this account. Please double check your spelling for possible phishing.", + "badactor": "Potential scam attempt, destination address on a Bad Actor List, transfer prohibited!", "memo_has_privatekey": "Please do not include what appears to be a private key or password.", "memo_is_privatekey": "Do not use private keys in memos.", "memo_is_password": "Do not use passwords in memos.", diff --git a/src/app/locales/zh.json b/src/app/locales/zh.json index 843738429c8f5a24b85840da540d31f597cae2f8..19ab5283a4968fab8201bb93735223bb051d5975 100644 --- a/src/app/locales/zh.json +++ b/src/app/locales/zh.json @@ -624,7 +624,7 @@ "each_account_segment_should_end_with_a_letter_or_digit": "Each account segment should end with a letter or digit.", "each_account_segment_should_be_longer": "Each account segment should be longer.", "verified_exchange_no_memo": "å¦‚æžœä½ è¦è½¬è´¦åˆ°äº¤æ˜“æ‰€ï¼Œä½ å¿…é¡»å¡«å†™å¤‡æ³¨ã€‚", - "badactor": "Use caution sending to this account. Please double check your spelling for possible phishing.", + "badactor": "Potential scam attempt, destination address on a Bad Actor List, transfer prohibited!", "memo_has_privatekey": "Please do not include what appears to be a private key or password.", "memo_is_privatekey": "Do not use private keys in memos.", "memo_is_password": "Do not use passwords in memos.", diff --git a/src/app/utils/BadActorList.js b/src/app/utils/BadActorList.js index e6730008319672894e6148d331d1d9dc7f43f828..a4c352ac2dc77c9664b5146d213dead1011fc217 100644 --- a/src/app/utils/BadActorList.js +++ b/src/app/utils/BadActorList.js @@ -49,12 +49,17 @@ bboomerang bbooster bbuildawhale bcex +bdhivepromo +bdhivesteem-coin +bdhivesteem24 bellyrub berniesandlers bernieslanders berniestandards bernlesanders bettrex +bfhivesteem +bhivesteem bihtrex bihtumb.hot bihumb.hot @@ -65,9 +70,13 @@ bildawhale binan binanc binance +binance-esteem +binance-hives binance.com binanced binancee +binancehive +binancehivesteem binances binanse binnance @@ -180,7 +189,6 @@ blocktraders blocktrades-com blocktrades-info blocktrades-us -blocktrades.com blocktrades.info blocktrades.us blocktradess @@ -201,6 +209,7 @@ bloctrades blokctrades bloktrades bloocktrades +bnb20 bocktrades bolcktrades bomerang @@ -232,6 +241,7 @@ boostter bootser bosoter boster +bsc20 btc-alpha btc-alpha.com btc38 @@ -269,6 +279,7 @@ buldawhale bulidawhale buobi-pro buuildawhale +bybit-pro c-cex c-cex.com canadiancoconut @@ -284,7 +295,9 @@ coinapyments.net coinayments.net coinbas coinbase +coinbase-network coinbase.com +coinbasebase coinbased coinegg coinegg.com @@ -315,6 +328,7 @@ community-coin conipayments.net conpayments.net coolcoin.com +crypto8deep curi curied curies @@ -322,7 +336,9 @@ curing d-tube dcrypto8 ddeepcrypto8 +ddepcrypto8 decrypto8 +deeocrypto8 deep8 deepccrypto8 deepcripto8 @@ -348,11 +364,15 @@ deepcypto8 deeppcrypto8 deeprypto8 depcrypto8 +depecrypto8 donkeypon +drrpcrypto8 edepcrypto8 eepcrypto8 +eth20 etherdelta etherdelta.com +euserver exrates exx.com feepcrypto8 @@ -400,6 +420,7 @@ gopx-deposit gopxa-deposit gpax-deposit gpoax-deposit +grapbene-swap gtg.witnesses herising hhuobi-pro @@ -407,14 +428,30 @@ hitbtc-deposit hitbtc-pro hitbtc.com hitbtcexchange +hive-bybit +hive-expo +hive-kucoin +hive-okx +hive-testnet +hive24airdrop +hivecoinbase +hivefastdeposit +hivemexc hterising +htx-9tuqx5jg +huob-pro huobbi-pro huobi-ppro huobi-pr0 +huobi-pro-chain huobi-proo huobi-prro huobi.pro +huobi.withdrawal huobii-pro +huobipay +huobiprom +huobitoken huobl-pro huoobi-pro huuobi-pro @@ -437,6 +474,7 @@ kucoi kucoin kucoinn kucoins +l0test lapha lbocktrades linkcoin @@ -451,6 +489,11 @@ locktrades lpha martsteem mercatox.com +mexc-expo +mexc-id-98044654 +mexc-net +mexchive +mexcserver miinnowbooster minnnowbooster minnobooster @@ -494,6 +537,16 @@ mminnowbooster mmyupbit mninowbooster msartsteem +mxc +mxccom +mxchive-beb20 +mxchive-btc20 +mxchive-trx20 +mxchive-web20 +mxchivemxcsteem +mxchivepromo +mxchivetest +mxcnet my-upbit myupbbit myupbiit @@ -504,6 +557,7 @@ myuupbit myyupbit neraex neraex.com +networkhive nextgencrypted nextgencryptos obomerang @@ -514,6 +568,8 @@ oepnledger-dex ogpax-deposit oinpayments.net okex.com +okxhive +okxpro olonie oloniex oomerang @@ -669,6 +725,8 @@ ppreciator ppromobot prmobot prmoobot +pro-huobi +probtchive promboot prombot prommobot @@ -728,6 +786,7 @@ seem seemit seemit2 seepcrypto8 +sepa666 setem setemit setemit2 @@ -748,6 +807,7 @@ smatrsteem smmartsteem smratsteem smrtsteem +sol-20 ssmartsteem ssteemit2 steampunks @@ -813,12 +873,16 @@ threising thrising tidex.com topbtc +trc-20 +trc20 +trcnetwork tseem tseemit tseemit2 ttherising ttrex ubildawhale +uder.dunamu udex uhobi-pro uildawhale @@ -857,6 +921,7 @@ upmwhale uppme uppmee uppmewhale +uswr.dunamu uupmewhale vaalueup valeup @@ -907,6 +972,8 @@ yobit.net youbit yunbi zenieix +zkhive +zktest ` .trim() .split('\n');