diff --git a/package.json b/package.json
index 2d8eb4b57f3..9de38629ec3 100644
--- a/package.json
+++ b/package.json
@@ -10,7 +10,7 @@
"start:prod": "NODE_ENV=production node build/server.js"
},
"dependencies": {
- "@ecency/render-helper": "^2.0.13",
+ "@ecency/render-helper": "^2.0.15",
"@hiveio/dhive": "^0.14.12",
"@hiveio/hivescript": "^1.2.1",
"@types/bs58": "^4.0.1",
@@ -20,7 +20,7 @@
"@types/pg": "^7.14.4",
"@types/rss": "^0.0.28",
"@types/speakingurl": "^13.0.2",
- "axios": "^0.19.2",
+ "axios": "^0.21.1",
"bootstrap": "^4.5.0",
"bs58": "^4.0.1",
"chartist": "^0.11.4",
diff --git a/src/client/base-handlers.ts b/src/client/base-handlers.ts
index 15adb6bf6c0..3a5f74bd451 100644
--- a/src/client/base-handlers.ts
+++ b/src/client/base-handlers.ts
@@ -1,5 +1,11 @@
// Base event handlers for browser window
+import {history} from "../common/store";
+
+import routes from "../common/routes";
+
+import {pathToRegexp} from "path-to-regexp";
+
// Global drag&drop
const handleDragOver = (e: DragEvent) => {
if (!(e.target && e.dataTransfer)) {
@@ -11,6 +17,56 @@ const handleDragOver = (e: DragEvent) => {
e.dataTransfer.dropEffect = 'none';
}
+// Global click handler
+const handleClick = (e: Event) => {
+ const el = e.target as HTMLElement;
+
+ // Anchor link handler
+ if (el.tagName === "A") {
+ const href = el.getAttribute("href");
+ if (href && href.startsWith("/") && href.indexOf("#") !== -1) {
+ const [route, anchor] = href.split("#");
+
+ // make sure link matches with one of app routes
+ if (Object.values(routes).find(p => pathToRegexp(p).test(route))) {
+ e.preventDefault();
+
+ let delay = 100;
+
+ if (history!.location.pathname !== route) {
+ history!.push(href);
+ delay = 400;
+ }
+
+ // scroll to anchor element
+ const el = document.getElementById(anchor);
+ if (el) {
+ setTimeout(() => {
+ el.scrollIntoView();
+ }, delay);
+ }
+ }
+ }
+ }
+
+ // Handle links in static pages. (faq etc...)
+ if (el.tagName === "A") {
+ if (el.classList.contains("push-link")) {
+ e.preventDefault();
+ const href = el.getAttribute("href");
+ if (href && href.startsWith("/")) {
+
+ // make sure link matches with one of app routes
+ if (Object.values(routes).find(p => pathToRegexp(p).test(href))) {
+ e.preventDefault();
+ history!.push(href);
+ }
+ }
+ }
+ }
+}
+
document.addEventListener("DOMContentLoaded", function () {
document.body.addEventListener('dragover', handleDragOver);
+ document.body.addEventListener('click', handleClick);
});
diff --git a/src/common/api/hive.ts b/src/common/api/hive.ts
index 46c24c4b0f1..a1bbb286b22 100644
--- a/src/common/api/hive.ts
+++ b/src/common/api/hive.ts
@@ -302,5 +302,11 @@ export const downVotingPower = (account: FullAccount): number => {
const pow = downVotePerc * 100 + (10000 * secondsDiff / 432000);
- return Math.min(pow / 100, 100);
+ const rv = Math.min(pow / 100, 100);
+
+ if (isNaN(rv)) {
+ return 0;
+ }
+
+ return rv;
};
diff --git a/src/common/app.tsx b/src/common/app.tsx
index eb5562475ee..d38ee5b9ace 100644
--- a/src/common/app.tsx
+++ b/src/common/app.tsx
@@ -64,7 +64,7 @@ const App = () => {
- Home
- New posts
- Hot posts
- Trending posts
-
+ {canGoBack && {
+ e.preventDefault();
+ this.goBack();
+ }}>Back}
+ Home
+ New posts
+ Hot posts
+ Trending posts
+ Ecency is a blockchain based social network - powered by Hive. Ecency offers uncensored, free, limitless, rewarding platform for content creators. Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency. Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community. Ecency is a blockchain based social network - powered by Hive. Ecency offers uncensored, free, limitless, rewarding platform for content creators. Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency. Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community. Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER. Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services. Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely. Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely. You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions. You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions. Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
-
This page doesn't exist.
-
+
This page doesn't exist.
+
+
+
+
All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/ar-SA.json b/src/common/i18n/locales/ar-SA.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/ar-SA.json +++ b/src/common/i18n/locales/ar-SA.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/az-AZ.json b/src/common/i18n/locales/az-AZ.json index 0dc7256ca8b..cd9880877ac 100644 --- a/src/common/i18n/locales/az-AZ.json +++ b/src/common/i18n/locales/az-AZ.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "Tam məzmuna bax", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Tarixçəyə düzəliş et", @@ -753,7 +755,7 @@ "page-title": "Ecency TSS", "page-sub-title": "Mündəricat", "what-is-ecency-header": "Ecency nədir?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "Hive blok zənciri nədir?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "Ecency necə işləyir?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "Ecency-ə necə qoşulmaq olar?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "Ecency-ə necə daxil olmaq olar?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "Ecency-də yönləndirmə sistemi necə işləyir?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Yeni versiya əlçatandır", + "download": "Download", "update": "Yenilə", "dismiss": "Bağla", "downloading": "Yeni versiya endirilir...", diff --git a/src/common/i18n/locales/bn-BD.json b/src/common/i18n/locales/bn-BD.json index 365d51f44fc..aa28e94d15c 100644 --- a/src/common/i18n/locales/bn-BD.json +++ b/src/common/i18n/locales/bn-BD.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/da-DK.json b/src/common/i18n/locales/da-DK.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/da-DK.json +++ b/src/common/i18n/locales/da-DK.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/de-DE.json b/src/common/i18n/locales/de-DE.json index 38055e262a5..683e235967e 100644 --- a/src/common/i18n/locales/de-DE.json +++ b/src/common/i18n/locales/de-DE.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "kompletten Inhalt anzeigen", "comment-entry-go-parent": "Übergeordneten Beitrag ansehen", "show-history": "Bearbeitungsverlauf ansehen", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Verlauf bearbeiten", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Inhaltsverzeichnis", "what-is-ecency-header": "Was ist Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Neue Version verfügbar", + "download": "Download", "update": "Aktualisieren", "dismiss": "Verwerfen", "downloading": "Neue Version herunterladen...", diff --git a/src/common/i18n/locales/el-GR.json b/src/common/i18n/locales/el-GR.json index 3e6608d8fd0..46bb8c11b54 100644 --- a/src/common/i18n/locales/el-GR.json +++ b/src/common/i18n/locales/el-GR.json @@ -27,7 +27,7 @@ "off": "Ανενεργό", "yes": "Ναι", "no": "Όχι", - "done": "Done" + "done": "Έτοιμο" }, "confirm": { "title": "Είστε σίγουρος;", @@ -61,7 +61,7 @@ "header-community": "Κοινότητες" }, "switch-lang": { - "contributors": "Contributors" + "contributors": "Συνεισφέροντες" }, "user-nav": { "wallet": "Πορτοφόλι", @@ -73,9 +73,9 @@ "gallery": "Γκαλερί", "drafts": "Πρόχειρα", "bookmarks": "Σελιδοδείκτες", - "schedules": "Schedules", + "schedules": "Χρονοδιαγράμματα", "logout": "Αποσύνδεση", - "vote-power": "Vote Power:" + "vote-power": "Δύναμη ψήφου:" }, "intro": { "title": "Φιλοδοξία στο μεγαλείο", @@ -119,7 +119,7 @@ "title": "Προτεινόμενα" }, "entry-list-item": { - "reblogged": "{{n}} reblogged", + "reblogged": "{{n}} αναδημοσιεύτηκε", "promoted": "προωθούμενα", "pinned": "Καρφιτσωμένη Δημοσίευση", "replies": "1 απάντηση. Κάντε κλικ για να απαντήσετε.", @@ -181,7 +181,9 @@ "comment-entry-go-root": "Δείτε το πλήρες κείμενο", "comment-entry-go-parent": "Δείτε το άμεσο σχόλιο", "show-history": "Προβολή ιστορικού επεξεργασίας", - "hidden-warning": "Η δημοσίευση έχει αποκρυφτεί λόγω χαμηλής βαθμολογίας." + "hidden-warning": "Η δημοσίευση έχει αποκρυφτεί λόγω χαμηλής βαθμολογίας.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Ιστορικό Επεξεργασίας", @@ -490,7 +492,7 @@ "title": "Ιστορικό", "type-curation_reward": "Ανταμοιβή επμέλειας", "type-author_reward": "Ανταμοιβή συγγραφέα", - "type-comment_benefactor_reward": "Comment Benefactor Reward", + "type-comment_benefactor_reward": "Σχόλιο Ανταμοιβής Benefactor", "type-claim_reward_balance": "Διεκδικήστε ανταμοιβές", "type-transfer": "Μεταφορά", "type-transfer_to_vesting": "Μεταφορά σε κατοχυρωμένα", @@ -574,13 +576,13 @@ "published": "Η ανάρτηση δημοσιεύθηκε", "updated": "Η δημοσίευση ενημερώθηκε", "advanced": "Advanced", - "beneficiaries": "Beneficiaries", - "beneficiaries-hint": "Set beneficiaries to share author reward with other accounts", - "reblog": "Reblog", - "reblog-hint": "Auto share content to your blog", - "schedule": "Schedule", - "schedule-hint": "Auto publish content on specific time", - "scheduled": "Post scheduled" + "beneficiaries": "Δικαιούχοι", + "beneficiaries-hint": "Ορίστε δικαιούχους για να μοιραστείτε την ανταμοιβή συγγραφέα με άλλους λογαριασμούς", + "reblog": "Αναδημοσιεύστε", + "reblog-hint": "Αυτόματη κοινοποίηση περιεχομένου στο ιστολόγιό σας", + "schedule": "Χρονοδιάγραμμα", + "schedule-hint": "Αυτόματη δημοσίευση περιεχομένου σε συγκεκριμένη ώρα", + "scheduled": "Προγραμματισμένη δημοσίευση" }, "tag-selector": { "placeholder-empty": "Ετικέτες. Η πρώτη ετικέτα είναι η κύρια κατηγορία. Tαξινομήσιμο.", @@ -599,17 +601,17 @@ "read-time-n-min": "~{{n}} λεπτών διαβάσματος" }, "beneficiary-editor": { - "title": "Beneficiaries", - "btn-label": "Set Beneficiaries", - "btn-label-n": "Set Beneficiaries ({{n}})", - "username": "Username", - "reward": "Reward", - "user-error": "{{n}} is not a valid user.", - "user-exists-error": "{{n}} is already in the list" + "title": "Δικαιούχοι", + "btn-label": "Ορισμός Δικαιούχων", + "btn-label-n": "Ορισμός Δικαιούχων ({{n}})", + "username": "Όνομα Χρήστη", + "reward": "Ανταμοιβή", + "user-error": "{{n}} δεν είναι έγκυρος χρήστη.", + "user-exists-error": "{{n}} Το αρχείο υπάρχει ήδη στη λίστα" }, "post-scheduler": { - "title": "Schedule", - "btn-label": "Schedule" + "title": "Χρονοδιάγραμμα", + "btn-label": "Χρονοδιάγραμμα" }, "notification": { "popup-title": "Έχετε μία νέα ειδοποίηση", @@ -627,7 +629,7 @@ "type-rvotes": "Ψήφοι", "type-replies": "Απαντήσεις", "type-mentions": "Αναφορές", - "type-follows": "Follows", + "type-follows": "Ακολουθεί", "type-reblogs": "Αναδημοσιεύσεις", "type-transfers": "Μεταφορές", "vote-str": "{{p}}% του αρέσει η δημοσίευση σας:", @@ -695,7 +697,7 @@ "proxy-active-description": "Έχετε ορίσει μεσολαβητή. Αν θέλετε να ψηφίζετε μόνοι σας για witness, παρακαλούμε αφαιρέστε τον μεσολαβητή σας.", "proxy-active-current": "Ο τρέχων μεσολαβητής σας είναι ο", "proxy-active-btn-label": "Αφαίρεση μεσολαβητή", - "proxy-votes-for": "@{{username}} votes for" + "proxy-votes-for": "@{{username}} ψηφίζει για" }, "proposals": { "page-title": "Προτάσεις", @@ -725,8 +727,8 @@ "title": "Πρόχειρα" }, "schedules": { - "title": "Scheduled Posts", - "move": "Move to drafts" + "title": "Προγραμματισμένες Δημοσιεύσεις", + "move": "Μεταφορά στο πρόχειρο" }, "bookmarks": { "title": "Σελιδοδείκτες" @@ -746,30 +748,30 @@ "faqs": "Όλες οι συχνές ερωτήσεις", "contact-title": "Επαφές", "contact-blog": "To ιστολόγιο του Ιδρυτή", - "contact-news": "News on Hive", + "contact-news": "Νέα στο Hive", "contact-email": "Στείλτε μας email" }, "faq": { "page-title": "Συχνές ερωτήσεις για την πλατφόρμα Ecency", "page-sub-title": "Πίνακας Περιεχομένων", "what-is-ecency-header": "Τι είναι η πλατφόρμα Ecency;", - "what-is-ecency-body": "Η πλατφόρμα Ecency είναι ένα blockchain βασισμένο κοινωνικό δίκτυο - τροφοδοτείται από Hive
Το Ecency προσφέρει επιβραβευτική πλατφόρμα χωρίς λογοκρισία, δωρεάν, απεριόριστη,για δημιουργούς περιεχομένου.
Το έργο ξεκίνησε και ιδρύθηκε από @good-karma τον Αύγουστο του 2016 ως εναλλακτικό κοινωνικό δίκτυο. Έκτοτε, το έργο έχει εξελιχθεί σε μια πολύ μεγαλύτερη ομάδα συντελεστών (μεταφραστές, testers, προγραμματιστές, influencers, δημιουργούς περιεχομένου και καταναλωτές) που βοήθησαν στη διαμόρφωση του Ecency.
Το Ecency βοηθά την ενσωμάτωση των μαζών στην τεχνολογία Blockchain όπου οι χρήστες πληρώνονται για τον χρόνο, τους πόρους τους και μαθαίνουν απολαμβάνοντας κοινωνικές πτυχές του blockchain. Μέσω της ευκολίας στη χρήση οι χρήστες όχι μόνο μαθαίνουν αλλά γίνονται και επενδυτές, καινοτόμοι της τεχνολογίας και της κοινότητας.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "Τι είναι το Hive blockchain;", "what-is-hive-body": "Η Hive είναι μια blockchain πλατφόρμα που σχεδιάστηκε να είναι γρήγορη, χωρίς φόρους, αποκεντρωμένη, χωρίς λογοκρισία πλατφόρμα για εφαρμογές Web3.0, με ενσωματωμένες λειτουργίες όπου οι κάτοχοι μεριδίων μπορούν να κερδίσουν ανταμοιβές με staking, επιμέλεια, ανάρτηση, παίζοντας παιχνίδια, κάνοντας αγοραπωλησίες- όλα χωρίς κανένα μεσάζονται (αποκεντρωμένα). Τα Tokens στην Hive blockchain ονομάζονται HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "Ποια είναι η διαφορά μεταξύ της επιφάνειας της Ecency και των άλλων Hive επιφανειών;", - "what-is-difference-body": "The primary differences in all interfaces or applications are in their feature-set, use cases. Ecency offers website, mobile and desktop applications for ease of access and with best security in mind. Accessible, opensource and innovative, built and owned by users. Aspire for greatness!
", + "what-is-difference-body": "Tailored feature set to empower you to create, inspire your audience and community. Ecency mobile application giving you on-go solution. With desktop app you are always sure to get uncensored content right from the blockchain, with website reach thousands of readers accross globe with best ranked content on search engines. State of art security measures so your keys will always stay encrypted and out of reach for ill-intentioned individuals. Fast and beautiful website, helps you to get discovered online and gain exposure for your content and gain loyal followers and readers. Build your community with Ecency today and take advantages of emerging blockchain technology and uncensored content, true free speech!
", + "why-choose-ecency-body": "Προσαρμοσμένο σύνολο λειτουργιών που σας δίνει τη δυνατότητα να δημιουργείτε, να εμπνέετε το κοινό και την κοινότητά σας. H Εφαρμογή Ecency για κινητές συσκευές που σας προσφέρει εν κινήσει λύση. Με την εφαρμογή για επιτραπέζιους υπολογιστές είστε πάντα βέβαιοι ότι θα λαμβάνετε περιεχόμενο χωρίς λογοκρισία απευθείας από το blockchain, με τον ιστότοπο να προσεγγίζει χιλιάδες αναγνώστες σε όλο τον κόσμο με το καλύτερο περιεχόμενο στις μηχανές αναζήτησης. Μέτρα ασφαλείας τελευταίας τεχνολογίας, ώστε τα κλειδιά σας να παραμένουν πάντα κρυπτογραφημένα και μακριά από άτομα με κακή πρόθεση. Γρήγορος και όμορφος ιστότοπος, σας βοηθά να έχετε διαδικτυακή παρουσία και να αποκτήσετε έκθεση για το περιεχόμενό σας και να αποκτήσετε πιστούς οπαδούς και αναγνώστες. Δημιουργήστε την κοινότητά σας με το Ecency σήμερα και επωφεληθείτε από την αναδυόμενη τεχνολογία blockchain και το περιεχόμενο χωρίς λογοκρισία, την πραγματική ελεύθερη ομιλία
", "how-ecency-works-header": "Πως λειτουργεί η πλατφόρμα Ecency;", - "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", + "how-ecency-works-body": "\nΤο Ecency αποθηκεύει και διαβάζει δεδομένα από το blockchain και έτσι τα δεδομένα είναι προσβάσιμα και χωρίς λογοκρισία. Το Ecency επιβραβεύει τους δημιουργούς περιεχομένου με τον ενσωματωμένο μηχανισμό κινήτρων του blockchain, με tokens (HIVE, HIVE DOLLARS, HIVE POWER) καθώς και Πόντους. Τα tokens μπορούν να αγοραστούν και να πωληθούν σε μεγάλα χρηματιστήρια κρυπτονομισμάτων (π.χ. Binance, Bittrex). Οι Πόντοι μπορούν να χρησιμοποιηθούν μέσα στην πλατφόρμα και να ανταλλάσσονται για αγαθά, υπηρεσίες.
", "how-to-join-header": "Πως να μπω στην πλατφόρμα Ecency;", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "Πως να συνδεθώ στην πλατφόρμα Ecency;", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", - "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", + "how-referrals-work-body": "Το σύστημα παραπομπής είναι απλό, μπορείτε να προσκαλέσετε τους φίλους σας προσθέτοντας το όνομα χρήστη σας σε αυτόν τον σύνδεσμο https://ecency.com/signup?referral=username και μοιραστείτε το με τους φίλους σας. Μόλις οι φίλοι σας γίνουν μέλη του Ecency και κερδίσουν τους πρώτους 250 πόντους τους, θα κερδίσετε 100 πόντους. Δεν υπάρχουν όρια στις παραπομπές και την ανταμοιβή του από αυτές
", "what-is-points-header": "Τι είναι οι Ecency πόντοι και πως να τους χρησιμοποιήσω;", - "what-is-points-body": "Ecency Points are continually minted and rewarded for all users for various social activities they perform on website, mobile or desktop app. Points can be used for promoting, boosting your content, can even be transferred or gifted to another user. You can also purchase Points with our mobile apps.
", + "what-is-points-body": "Τα Ecency Points συνεχώς κόβονται και ανταμείβονται για όλους τους χρήστες για διάφορες κοινωνικές δραστηριότητες που εκτελούν στον ιστότοπο, στην εφαρμογή για κινητά ή σε επιτραπέζιους υπολογιστές. Οι πόντοι μπορούν να χρησιμοποιηθούν για την προώθηση, την ενίσχυση του περιεχομένου σας, μπορούν ακόμη και να μεταφερθούν ή να προωθηθούν σε άλλον χρήστη. Μπορείτε επίσης να αγοράσετε πόντους με τις εφαρμογές μας για κινητά.
", "where-tokens-come-header": "Από που προέρχονται τα tokens;", "where-tokens-come-body": "The Hive network continually creates new digital tokens to reward content creators and curators. Some of the newly-created tokens are transferred to users who add value to platform by posting, commenting, and voting on other people's posts. The remainder is distributed to holders of HIVE POWER and the witnesses that secures the blockchain.
", "how-promotion-work-header": "How content promotion works?", @@ -791,16 +793,16 @@ "what-spam-abuse-header": "Τι θεωρείται spam, ανεπιθύμητο ή κατάχρηση;", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", - "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "how-to-contribute-header": "Πώς να συμβάλετε στην Ecency;", + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { - "title": "Contributors", - "description": "These great people contributed in one way or another to Ecency, we would like to thank them all. If you want to join our team by contributing with Translation, Ideas, Development, Designing, Social awareness, feel free to join. To learn more read our FAQ." + "title": "Συνεισφέροντες", + "description": "Αυτοί οι σπουδαίοι άνθρωποι συνέβαλα με τον ένα ή αλλο τρόπο στην Ecency, θέλουμε να τους ευχαριστήσουμε όλους. Αμα θέλετε να μπείτε στην ομάδα συμβάλλοντας στη Μετάφραση, με Ιδέες, με την Ανάπτυξη, τον Σχεδιασμός, την Κοινωνική ευαισθητοποίηση, μπορείτε να συμμετάσχετε. Για να μάθετε περισσότερα διαβάστε το FAQ." }, "context-menu": { "cut": "Αποκοπή", @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Νέα έκδοση διαθέσιμη", + "download": "Λήψη", "update": "Ενημέρωση", "dismiss": "Παράβλεψη", "downloading": "Λήψη νέας έκδοσης...", diff --git a/src/common/i18n/locales/en-US.json b/src/common/i18n/locales/en-US.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/en-US.json +++ b/src/common/i18n/locales/en-US.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/es-ES.json b/src/common/i18n/locales/es-ES.json index 9e80a69a51c..7d4bff88f1f 100644 --- a/src/common/i18n/locales/es-ES.json +++ b/src/common/i18n/locales/es-ES.json @@ -61,7 +61,7 @@ "header-community": "Comunidades" }, "switch-lang": { - "contributors": "Contributors" + "contributors": "Colaboradores" }, "user-nav": { "wallet": "Cartera", @@ -181,7 +181,9 @@ "comment-entry-go-root": "Ver los demas comentarios", "comment-entry-go-parent": "Ver el comentario relacionado", "show-history": "Mostrar historial de ediciones", - "hidden-warning": "El post ha sido ocultado por bajas calificaciones." + "hidden-warning": "El post ha sido ocultado por bajas calificaciones.", + "address-copy": "Copiar la dirección de la Publicación", + "address-copied": "Dirección de publicación copiada al portapapeles." }, "edit-history": { "title": "Editar historial", @@ -753,7 +755,7 @@ "page-title": "Preguntas Frecuentes de Ecency", "page-sub-title": "Lista de contenidos", "what-is-ecency-header": "¿Qué es Ecency?", - "what-is-ecency-body": "Ecency es una red social basada en blockchain - alimentada por Hive.
Ecency ofrece una plataforma sin censura, libre, ilimitada y gratificante para los creadores de contenido.
El proyecto fue iniciado y fundado por @good-karma en agosto de 2016 como una red social alternativa. Desde entonces, el proyecto ha crecido a un grupo mucho mayor de colaboradores (traductores, testers, desarrolladores, influenciadores, creadores de contenido y consumidores) que ayudaron a dar forma a Ecency.
Ecency ayuda a incorporar masas a la tecnología Blockchain donde los usuarios reciben pagos por su tiempo, y aprender mientras disfrutan de los aspectos sociales de la cadena de bloques. A través de la facilidad de uso, los usuarios no sólo aprenden sino que también se convierten en inversores, innovadores de la tecnología y la comunidad.
", + "what-is-ecency-body": "Ecency es una red social basada en blockchain - Creada sobre Hive.
Ecency ofrece una plataforma sin censura, libre, ilimitada y gratificante para los creadores de contenido.
El proyecto fue iniciado y fundado por @good-karma en agosto de 2016 como una red social alternativa. Desde entonces, el proyecto ha crecido a un grupo mucho mayor de colaboradores (traductores, testers, desarrolladores, influenciadores, creadores de contenido y consumidores) que ayudaron a dar forma a Ecency.
Ecencia ayuda a la incorporación de las masas a la tecnología Blockchain donde los usuarios reciben pagos por su tiempo, y aprender mientras disfrutan de los aspectos sociales de la cadena de bloques. A través de la facilidad de uso, los usuarios no sólo aprenden sino que también se convierten en inversores, innovadores de la tecnología y la comunidad.
", "what-is-hive-header": "¿Qué es el Blockchain de Hive?", "what-is-hive-body": "Hive es una blockchain diseñada para ser una plataforma rápida, sin comisiones, descentralizada y sin censura para aplicaciones Web 3.0, con características incorporadas donde los poseedores de \"estacas\" pueden ganar recompensas al estacar, curar, publicar, jugar juegos, comerciar - todo sin ningún intermediario (descentralizado). Los Tokens en la blockchain de Hive tienen los nombres de HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "¿Cuál es la diferencia entre Ecency y otras interfaces de Hive?", @@ -763,11 +765,11 @@ "how-ecency-works-header": "¿Cómo funciona Ecency?", "how-ecency-works-body": "Ecency almacena y lee datos de la cadena de bloques, por lo que los datos son accesibles y no se censuran. Ecency premia a los creadores de contenido con un mecanismo de incentivo incorporado en la blockchain, con tokens (HIVE, HIVE DOLLARS, HIVE POWER) así como puntos. Los tokens se pueden comprar y vender en los principales mercados de criptomonedas (por ejemplo, Binance, Bittrex). Los puntos pueden ser utilizados dentro de la plataforma y comercializados por bienes, servicios.
", "how-to-join-header": "¿Cómo unirse a Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Ve a https://ecency.com/signup?referral=ecency y crea una cuenta. Después de registrarte recibirás un correo electrónico con más instrucciones. Tu contraseña es tu clave maestra de tu cuenta. Por favor, guárdela de forma segura, si pierdes tu contraseña, en última instancia pierdes el acceso a tu cuenta y tus fondos. Las cuentas no pueden ser desactivadas o eliminadas, los nombres de los clientes tampoco pueden ser cambiados. La cuenta junto con toda su actividad se almacena permanentemente en la cadena de bloques. Sin contraseña, las cuentas no pueden ser restauradas, almacena tus claves de forma segura.
", "how-to-signin-header": "¿Cómo registrarse en Ecency?", - "how-to-signin-body": "Puede iniciar sesión en Ecency utilizando su nombre de usuario y contraseña maestra o utilizando claves privadas activas. Nos tomamos la seguridad muy en serio, por eso nunca almacenamos sus claves privadas, en la aplicación móvil están encriptadas con un código PIN adicional de su elección, en el sitio web nunca se almacenan. También puedes usar el servicio de autentificación Hivesigner OAuth2 para fácilmente iniciar sesión, administrar y realizar otras acciones.
", + "how-to-signin-body": "Puedes iniciar sesión en Ecencia usando tu Nombre de Usuario y Contraseña Maestra o usando Claves Privadas Activas. Nos tomamos la seguridad muy en serio, por eso nunca guardamos tus claves privadas, en la aplicación móvil se cifran con un código PIN adicional de tu elección, en el sitio web nunca se almacenan. También puede utilizar el servicio de autenticación Hivesigner OAuth2 para iniciar sesión, administrar y realizar acciones fácilmente.
", "how-referrals-work-header": "¿Cómo funciona el sistema de referencia en Ecency?", - "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", + "how-referrals-work-body": "El sistema de referidos es simple, puedes invitar a tus amigos agregando tu nombre de usuario en este enlace https://ecency.com/signup?referral=username y compartirlo con tus amigos. Una vez que sus amigos se unan a Ecency y ganen sus primeros 250 puntos, usted ganará 100 puntos. No hay límites en las referencias y su recompensa.
", "what-is-points-header": "¿Qué son los Puntos de Ecency y cómo utilizarlos?", "what-is-points-body": "Los puntos de Ecency se acuñan y recompensan continuamente para todos los usuarios por las diversas actividades sociales que realizan en el sitio web, la aplicación móvil o de escritorio. Los puntos se pueden usar para promocionar, mejorar su contenido, incluso se pueden transferir o regalar a otro usuario. También puede comprar puntos con nuestras aplicaciones móviles.
", "where-tokens-come-header": "¿De dónde vienen las fichas?", @@ -791,16 +793,16 @@ "what-spam-abuse-header": "¿Qué se considera spam o abuso?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "Todo el contenido de nuestro sitio es creado por nuestros usuarios y no modificamos ni podemos añadir backlinks. Usted es libre de contactar con el autor de la publicación o Registrarse para abrir su propio blog y comunidad, publicar artículos para crear backlinks de forma gratuita.
", "can-guest-post-header": "¿Es posible publicar en su sitio web?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", - "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "how-to-contribute-header": "¿Cómo contribuir con Ecency?", + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { - "title": "Contributors", - "description": "These great people contributed in one way or another to Ecency, we would like to thank them all. If you want to join our team by contributing with Translation, Ideas, Development, Designing, Social awareness, feel free to join. To learn more read our FAQ." + "title": "Colaboradores", + "description": "Estas grandes personas contribuyeron de una manera u otra con Ecency, nos gustaría darles las gracias a todos. Si quieres unirte a nuestro equipo contribuyendo con la traducción, Ideas, Desarrollo, Diseño, Conciencia Social, siéntete libre de unirte. Para obtener más información, lee nuestras Preguntas Frecuentes ." }, "context-menu": { "cut": "Cortar", @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "La nueva versión está disponible", + "download": "Descargar", "update": "Actualización", "dismiss": "Descartar", "downloading": "Descargando nueva versión...", diff --git a/src/common/i18n/locales/et-EE.json b/src/common/i18n/locales/et-EE.json index 50fffb4f853..53fc3fdfaea 100644 --- a/src/common/i18n/locales/et-EE.json +++ b/src/common/i18n/locales/et-EE.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "Vaata kogu konteksti", "comment-entry-go-parent": "Vaata eelmist kommentaari", "show-history": "Näita muutmise ajalugu", - "hidden-warning": "See postitus on madala hinnangu tõttu peidetud." + "hidden-warning": "See postitus on madala hinnangu tõttu peidetud.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Muudatuste ajalugu", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/fa-IR.json b/src/common/i18n/locales/fa-IR.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/fa-IR.json +++ b/src/common/i18n/locales/fa-IR.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/fi-FI.json b/src/common/i18n/locales/fi-FI.json index d2f2ab1e7ab..3f7608ff969 100644 --- a/src/common/i18n/locales/fi-FI.json +++ b/src/common/i18n/locales/fi-FI.json @@ -61,7 +61,7 @@ "header-community": "Yhteisöt" }, "switch-lang": { - "contributors": "Contributors" + "contributors": "Osallistujat" }, "user-nav": { "wallet": "Lompakko", @@ -150,9 +150,9 @@ "entry-index": { "feed": "Syöte", "tags": "Suositut", - "title": "{{f}} aihetta", - "description": "{{f}} aihetta sosiaalisessa verkossa, jonka käyttäjät omistavat ja ylläpitävät.", - "description-tag": "{{f}} #{{t}} aihetta", + "title": "{{f}} aiheet", + "description": "{{f}} aiheet sosiaalisessa verkossa, jonka käyttäjät omistavat ja ylläpitävät.", + "description-tag": "{{f}} #{{t}} aiheet", "description-user-feed": "{{u}} syöte", "faq": "UKK", "tos": "Käyttöehdot", @@ -181,7 +181,9 @@ "comment-entry-go-root": "Katso kaikki", "comment-entry-go-parent": "Näytä vanhempi", "show-history": "Näytä muokkaushistoria", - "hidden-warning": "Tämä viesti oli piilotettu alhaisten arvostelujen vuoksi." + "hidden-warning": "Tämä viesti oli piilotettu alhaisten arvostelujen vuoksi.", + "address-copy": "Kopioi osoite", + "address-copied": "Osoite kopioitu leikepöydälle." }, "edit-history": { "title": "Muokkaushistoria", @@ -209,7 +211,7 @@ "reveal": "Näytä kommentti" }, "community": { - "page-description": "{{f}} aihetta", + "page-description": "{{f}} aiheet", "subscribe": "Liity", "subscribed": "Liittyi", "unsubscribe": "Poistu", @@ -359,7 +361,7 @@ "hive-dollars": "HIVE DOLLARIT", "hive-dollars-description": "Tokenin arvo on noin $1.00 edestä HIVEä.", "savings": "SÄÄSTÖT", - "savings-description": "Määrässä on 3 päivän kotiutusjakso.", + "savings-description": "Tilillä on 3 päivän kotiutusjakso.", "next-power-down": "Seuraava power down on {{time}}, {{amount}}", "transfer": "Siirto", "transfer-to-savings": "Siirrä säästöihin", @@ -401,7 +403,7 @@ "checkin-extra-list-desc": "Käyttöbonus", "transfer-sent-list-desc": "Siirrä käyttäjälle {{n}}", "transfer-incoming-list-desc": "Siirrä käyttäjältä {{n}}", - "delegation-list-desc": "Valtuutuspalkkiot", + "delegation-list-desc": "Valtuutuspalkkio", "referral-list-desc": "Suosittelupalkkio", "transfer": "Lahjoita", "claim-ok": "Pisteitä lunastettu", @@ -753,7 +755,7 @@ "page-title": "Ecency UKK", "page-sub-title": "Sisällysluettelo", "what-is-ecency-header": "Mikä on Ecency?", - "what-is-ecency-body": "Ecency on lohkoketju -pohjainen sosiaalinen verkosto, jonka on luonut Hive.
Ecency tarjoaa sensuroimattoman, vapaan, rajattoman ja palkitsevan alustan sisällön luojille.
Hankkeen käynnisti ja perusti Elokuussa 2016 @good-karma vaihtoehtoiseksi sosiaaliseksi verkostoksi. Siitä lähtien hanke on kasvanut paljon suuremmaksi joukoksi osallistujia (kääntäjät, testaajat, kehittäjät, vaikuttajat, sisällöntuottajat ja kuluttajat), jotka mahdollistivat Ecencyn.
Ecency auttaa perehdyttämään ihmisiä lohkoketjuteknologiaan, jossa käyttäjille maksetaan ajasta sekä resursseista ja voimme oppia samalla nauttia lohkoketjun sosiaalisista näkökohdista. Helppokäyttöisyyden ansiosta käyttäjät oppivat ja myös siirtyvät sijoittajiksi, teknologian ja yhteisön uudistajiksi.
", + "what-is-ecency-body": "Ecency on lohkoketju -pohjainen sosiaalinen verkosto, jonka on mahdollistaa Hive.
Ecency tarjoaa sensuroimattoman, vapaan, rajattoman ja palkitsevan alustan sisällön luojille.
Hankkeen käynnisti ja perusti Elokuussa 2016 @good-karma vaihtoehtoiseksi sosiaaliseksi verkostoksi. Siitä lähtien hanke on kasvanut paljon suuremmaksi joukoksi osallistujia (kääntäjät, testaajat, kehittäjät, vaikuttajat, sisällöntuottajat ja käyttäjät), jotka mahdollistivat Ecencyn.
Ecency auttaa perehdyttämään ihmisiä lohkoketjuteknologiaan, jossa käyttäjille maksetaan ajasta sekä resursseista ja voimme oppia samalla nauttia lohkoketjun sosiaalisista näkökohdista. Helppokäyttöisyyden ansiosta käyttäjät oppivat ja myös siirtyvät sijoittajiksi, teknologian ja yhteisön uudistajiksi.
", "what-is-hive-header": "Mikä on Hive-lohkoketju?", "what-is-hive-body": "Hive on lohkoketju, joka oli suunniteltu olemaan nopea, ilmainen, hajautettu sekä sensuroimaton alusta Web3- sovelluksineen, joissa on sisäänrakennettuja ominaisuuksia, joissa omistajat voivat ansaita palkintoja panostamalla, tarkastamalla, pelaamalla sekä vaihtamalla - ilman välikäsiä (hajautettu). Hive-lohkoketjun yleisimmät merkit ovat HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "Mikä ero on Ecencyllä ja muilla Hive-käyttöliittymillä?", @@ -763,17 +765,17 @@ "how-ecency-works-header": "Kuinka Ecency toimii?", "how-ecency-works-body": "Ecency tallentaa ja lukee tietoja lohkoketjussa, joten data on saatavilla sensuroimattomana. Ecency palkitsee sisällönluojat, joilla on sisäänrakennettu kannustinmekanismi lohkoketjussa, Merkintöineen (HIVE, HIVE DOLLARS, HIVE POWER) sekä pisteineen. Merkkejä voidaan ostaa ja myydä suurissa kryptovaluuttapörsseissä (esim. Binance, Bittrex). Pisteitä voi käyttää järjestelmässä, sekä palveluiden ja hyvikkeiden vaihdossa.
", "how-to-join-header": "Miten liittyä Ecencyyn?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Siirry https://ecency.com/signup?referral=ecency luodaksesi tilin. Rekisteröitymisen jälkeen saat sähköpostilla lisäohjeita. Salasanasi on master-avain tilillesi. Säilytä se turvallisesti ja jos olet hukannut salasanasi, olet lopullisesti menettänyt pääsyn tilillesi ja varoihisi. Tilejä ei voi poistaa käytöstä tai hävittää, tilin nimiä ei voi myöskään muuttaa. Tili ja kaikki sen toiminta on tallennettu pysyvästi lohkoketjuun. Ilman salasanaa tilejä ei voi myöskään palauttaa, joten tallenna avaimesi turvallisesti.
", "how-to-signin-header": "Miten kirjautua sisään Ecencyyn?", - "how-to-signin-body": "Voit kirjautua Ecencyyn käyttämällä käyttäjätunnusta ja master-salasanaa tai käyttämällä Aktiivisia Privaattiavaimia. Suhtaudumme turvallisuuteen hyvin vakavasti, siksi emme koskaan säilytä yksityisiä avaimiasi, mobiilisovelluksissa ne on salattu valitsemallasi ylimääräisellä PIN-koodilla, verkkosivustolla niitä ei koskaan ole tallenneta. Voit myös käyttää Hivesigner OAuth2 -todennuspalvelua kirjautumiseen, sekä hallinnoidaksesi ja suorittaaksesi toimintoja.
", + "how-to-signin-body": "Voit kirjautua Ecencyyn käyttämällä käyttäjätunnusta ja master-salasanaa tai käyttämällä Aktiivisia Privaattiavaimia. Suhtaudumme turvallisuuteen hyvin vakavasti, siksi emme koskaan säilytä yksityisiä avaimiasi, mobiilisovelluksissa ne on salattu valitsemallasi ylimääräisellä PIN-koodilla, verkkosivustolla niitä ei koskaan ole tallenneta. Voit myös käyttää Hivesigner OAuth2 -todennuspalvelua kirjautumiseen, sekä hallinnoidaksesi ja suorittaaksesi toimintoja.
", "how-referrals-work-header": "Kuinka suositusjärjestelmä toimii Ecencyssä?", - "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", - "what-is-points-header": "Mitä ovat Ecencypisteet ja miten niitä käytetään?", + "how-referrals-work-body": "Suositusjärjestelmä on yksinkertainen, voit kutsua ystäviäsi lisäämällä käyttäjätunnuksesi tähän linkkiin https://ecency. om/signup?referral=käyttäjänimi ja jaa se ystäviesi kanssa. Kun ystäväsi liittyvät Ecencyn jäseniksi ja ansaitsevat ensimmäiset 250 pistettä, ansaitset 100 pistettä. Suosituksissa ja niiden palkkioissa ei ole rajoituksia.
", + "what-is-points-header": "Mitä ovat Ecencyn pisteet ja miten niitä käytetään?", "what-is-points-body": "Ecency-pisteitä luodaan ja palkitaan jatkuvasti kaikille käyttäjille erilaisista sosiaalisista toiminnoista, joita he suorittavat verkkosivuilla, mobiili- tai työpöytäsovelluksessa. Pisteitä voidaan käyttää korostamiseen, tehostamiseen, sekä voidaan jopa siirtää tai lahjoittaa toiselle käyttäjälle. Voit myös ostaa pisteitä mobiilisovelluksellamme.
", "where-tokens-come-header": "Mistä nämä merkit tulevat?", "where-tokens-come-body": "Hive-verkko luo jatkuvasti uusia digitaalisia merkkejä palkitsemaan sisällönluojia ja tarkastajia. Osa vastikään luoduista merkeistä siirretään käyttäjille, jotka tuovat lisäarvoa alustalle lähettämällä, kommentoimalla ja äänestämällä muiden julkaisuja. Loput jaetaan HIVE POWERin haltijoille ja todistajille, jotka ylläpitävät lohkoketjua.
", "how-promotion-work-header": "Kuinka korostaminen toimii?", - "how-promotion-work-body": "Sisällön korostaminen Ecencyssä on hyvin yksinkertaista ja helppoa. Ecency Pointseja käytetään korostamaan sisältöä 1, 2, 3, 7 tai 14 päiväksi saamaan enemmän näkyvyyttä. Mainostetut viestit sekoitetaan eri syötteisiin kaikille käyttäjille mobiilisovelluksessa, työpöytäsovelluksessa ja verkkosivuilla. Rajoituksia ei ole, minkä tahansa viran kautta voidaan edistää näkyvyyden ja sitoutumisen lisäämistä. Meillä on oikeus poistaa viestejä myynninedistämislistalta, jos se rikkoo tiettyjä internet-etikettejä.
", + "how-promotion-work-body": "Sisällön korostaminen Ecencyssä on hyvin yksinkertaista ja helppoa. Ecency-pisteitä käytetään korostamaan sisältöä 1, 2, 3, 7 tai 14 päiväksi saamaan enemmän näkyvyyttä. Mainostetut viestit sekoitetaan eri syötteisiin kaikille käyttäjille mobiilisovelluksessa, työpöytäsovelluksessa ja verkkosivuilla. Rajoituksia ei ole, minkä tahansa viran kautta voidaan edistää näkyvyyden ja sitoutumisen lisäämistä. Meillä on oikeus poistaa viestejä myynninedistämislistalta, jos se rikkoo tiettyjä internet-etikettejä.
", "how-boosting-work-header": "Kuinka tehostaminen toimii?", "how-boosting-work-body": "Pisteitä voidaan käyttää sisällön tehostamiseen (julkaisut ja kommentit). Moderaattorimme ja tarkastajamme tarkastavat pyyntöjen tehostamisen manuaalisesti, missä saattaa kestää jopa 24 tuntia.
Osana ominaisuuksien tarkistamista voimme harkita: a) Onko sisältö alkuperäistä, b) joita ei havaittu cheetalla, mackbot'lla, hivewatchereilla tai muilla mustalla listalla jne. c) käyttäjä ei ole Ecencyn mustalla listalla johtuen väärinkäytöksistä.
Tehostus ei takaa tarkastusta, jos sisältöä ei ole tarkastettu 24 tunnin kuluessa, pisteet palautetaan.", "how-to-transfer-header": "Kuinka siirrän lohkoketjun merkkejä?", @@ -791,16 +793,16 @@ "what-spam-abuse-header": "Mitä lasketaan roskapostiksi tai väärinkäytöksi?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "Kaikki sivustollamme oleva sisältö on käyttäjien luomaa, emmekä voi muokata tai lisätä käänteislinkkejä. Ota yhteyttä julkaisun tekijään tai Rekisteröidy avataksesi oman blogisi ja yhteisösi, sekä tehden käänteislinkkejä julkaisuillesi ilmaiseksi.
", "can-guest-post-header": "Onko vieralilijoiden mahdollista julkaista sivustolle?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", - "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "can-guest-post-body": "Ecencyssä julkaiseminen on yksinkertaista ja helppoa, Rekisteröidy avataksesi oman blogin ja yhteisön, sekä aloittaaksesi sisällön julkaisemisen.
", + "how-to-contribute-header": "Kuinka osallistua Ecencyn parantamiseen?", + "how-to-contribute-body": "Meidän >mahtavat jäsenemme auttavat meitä muokkaamaan Ecencyä. Voit olla osana tätä hienoa liikettä, liittymällä Käännöstiimimme:Verkkosivusto, Mobiili tai osallistumalla ideointiin, kehittämiseen, suunnitteluun ja sosiaalisen median tavoitettavuuteen. Teemme parhaamme tukeaksemme osallistujia!
" } }, "contributors": { - "title": "Contributors", - "description": "These great people contributed in one way or another to Ecency, we would like to thank them all. If you want to join our team by contributing with Translation, Ideas, Development, Designing, Social awareness, feel free to join. To learn more read our FAQ." + "title": "Osallistujat", + "description": "Nämä mahtavat ihmiset osallistuivat tavalla tai toisella Ecencyn kehittämiseen ja haluamme kiittää heitä kaikkia. Jos haluat liittyä tiimiimme osallistumalla käännöksiin, ideointiin, kehitykseen, suunnitteluun, tai tietoisuuden kasvuun, voit liittyä vapaasti mukaan. Lue lisää UKK." }, "context-menu": { "cut": "Leikkaa", @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Uusi versio on saatavilla", + "download": "Lataa", "update": "Päivitä", "dismiss": "Hylkää", "downloading": "Ladataan uutta versiota...", diff --git a/src/common/i18n/locales/fil-PH.json b/src/common/i18n/locales/fil-PH.json index 89aecf9d8ea..136e4d658a6 100644 --- a/src/common/i18n/locales/fil-PH.json +++ b/src/common/i18n/locales/fil-PH.json @@ -61,7 +61,7 @@ "header-community": "Mga pamayanan" }, "switch-lang": { - "contributors": "Contributors" + "contributors": "Mg may ambag" }, "user-nav": { "wallet": "Pitaka", @@ -75,7 +75,7 @@ "bookmarks": "Mga talaan", "schedules": "Mga Palatuntunan", "logout": "Umalis", - "vote-power": "Vote Power:" + "vote-power": "Puwersa ng Boto" }, "intro": { "title": "Hangarin ang kadakilaan", @@ -134,7 +134,7 @@ }, "entry-reblog": { "reblog": "Mga kondisyon ng serbisyo", - "confirm-title": "Reblog to @{{n}}'s blog?", + "confirm-title": "I-reblog kay @{{n}}'s blog?", "confirm-ok": "I-blog muli", "success": "Muling nai-blog!" }, @@ -163,7 +163,7 @@ "credits": "datos mula sa Coingecko" }, "list-style": { - "title": "Toggle list style" + "title": "Iayos ang istilo ng listahan" }, "entry-votes": { "title": "1 Boto", @@ -181,7 +181,9 @@ "comment-entry-go-root": "Tingnan ang buong konteksto", "comment-entry-go-parent": "Tingnan ang direktang puno", "show-history": "Ipakita ang kasaysayan ng mga binago", - "hidden-warning": "Ang post na ito na nakatago dahil sa mababang antas ng katayuan." + "hidden-warning": "Ang post na ito na nakatago dahil sa mababang antas ng katayuan.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Baguhin ang Kasaysayan", @@ -201,7 +203,7 @@ "replies": "1 Komento", "n-replies": "{{n}} Mga komento", "order": "Baguhin ang pagkakasunod-sunod", - "order-trending": "Trending", + "order-trending": "Uso", "order-reputation": "Reputasyon", "order-votes": "Mga boto", "order-created": "Edad", @@ -364,33 +366,33 @@ "transfer": "Ilipat", "transfer-to-savings": "Ilipat sa impukan", "convert": "Convert", - "power-up": "Power up", + "power-up": "Magpalakas", "withdraw-hive": "Maglabas ng Hive", - "withdraw-hbd": "Withdraw Hive Dollar", + "withdraw-hbd": "Ilabas ang Hive Dollar", "delegate": "Magpahiram", - "power-down": "Power down", + "power-down": "Magpahina", "withdraw-routes": "Withdraw Routes" }, "withdraw-routes": { "title": "Alisin ang mga account", "account": "Account", - "percent": "Percent", - "auto-power-up": "Automatically power up" + "percent": "Porsyento", + "auto-power-up": "Awtomatikong magpalakas" }, "points": { - "get": "BUY POINTS", - "unclaimed-points": "Unclaimed points", - "claim-reward-points": "Claim reward points", - "main-description": "Points can be used for in-app services, like Promote, Boost, Gifting. Earn them just by using Ecency apps and improve your experience.", - "earn-points": "How to earn more Points", - "post-desc": "You can earn point by posting regularly. Posting gives you 15 points.", - "comment-desc": "Each comment you make helps you to grow your audience and make friendship but also earns you 5 points.", - "checkin-desc": "Checking in on Ecency gives you 0.25 points and helps you stay connected with your friends.", - "vote-desc": "By voting you give reward to other creators and show your appreciation but also earn 0.01 x vote weight points.", - "reblog-desc": " Share what post you like with your friends and earn 1 points.", + "get": "BUMILI NG MGA PUNTOS", + "unclaimed-points": "Mga puntos na hindi pa nakukuha", + "claim-reward-points": "Kunin ang mga gantimpalang puntos", + "main-description": "Ang mga puntos ay puwedeng gamitin para sa mga in-app na serbisyo, gaya ng pagsulong, pagpapalakas, panregalo. Kumita ng puntos sa pamamagitan lamang ng paggamit sa Ecency apps and magkakaron ng mga kaalaman.", + "earn-points": "Paano kumita ng maraming Puntos", + "post-desc": "Puwede kang regular na kumita ng puntos. Sa pagpost magkakaroon ka ng 15 puntos.", + "comment-desc": "Ang mga mga komentong iyong gagawin ay nakakatulong para lumago ang iyong tagasunod at magkaroon ng mga kaibigan at kikita ka din g 5 puntos.", + "checkin-desc": "Bawat pasok mo sa Ecency ay magkakaron ka ng 0.25 na puntos na makakatulong sayo para ay manatiling konektado sa iyong mga kaibigan.", + "vote-desc": "Sa pamamagitan ng pagboto nagbibigay ka ng gantimpala sa ibang mga taga-likha na nagpapakita ng iyong pagpapahala at kikita ka din ng 0.01 x boto timbang ng boto.", + "reblog-desc": " Ibahagi ang mga post na gusto mo sa iyong mga kaibigan at kumita ng 1 puntos.", "login-desc": "Kapag ikaw ay pumasok sa Ecency ikaw ay awtomatikong magkakaroon ng 100 na puntos.", - "checkin-extra-desc": "Consistent use of app gives you extra chances to earn more 10 points, be more active and earn more.", - "delegation-desc": "You can earn ~50 points per day for each 1000HP delegation.", + "checkin-extra-desc": "Ang palagiang paggamit ng app ay magbibigay sayo ng karagdagang tsansa na kumita ng dagdag na 10 puntos, maging aktibo at kumita pa ng mas marami.", + "delegation-desc": "Puwede kang kumita ~50 puntos bawat araw sa bawat 1000HP na delegsayon.", "history": "Kasaysayan", "post-list-desc": "Puntos para sa post", "comment-list-desc": "Puntos para sa komento", @@ -401,11 +403,11 @@ "checkin-extra-list-desc": "Gamit na ganti", "transfer-sent-list-desc": "Ilipat kay {{n}}", "transfer-incoming-list-desc": "Inilipat galing kay {{n}}", - "delegation-list-desc": "Delegation reward", - "referral-list-desc": "Referral reward", + "delegation-list-desc": "Delegasyon na gantimpala", + "referral-list-desc": "Gantimpala sa mga Referral", "transfer": "I-regalo sa iba", - "claim-ok": "Points claimed", - "promote": "Promote", + "claim-ok": "Mga puntos na naangkin", + "promote": "Isulong", "boost": "Palakasin" }, "purchase": { @@ -431,7 +433,7 @@ "post-placeholder": "bansag/permanenteng ugnayan", "post-error": "Hindi isang balidong address", "post-error-exists": "Ang post ay tapos nang naisulong", - "success-message": "Your request submitted. It will be activated in a couple minutes." + "success-message": "Naisumite na ang iyong hiling. Magiging aktibo ito sa ilang sandali." }, "transfer": { "transfer-title": "Ilipat sa Account", @@ -443,25 +445,25 @@ "withdraw-saving-sub-title": "Ilabas ang mga pondo kapag natapos na kinakailangang 3 araw na paghihintay", "power-up-title": "Ilagay ang Hive bilang Power", "convert-title": "Baguhin", - "power-up-sub-title": "Influence tokens which give you more control over post payouts and allow you to earn on curation rewards.", - "convert-sub-title": "Only recommended when HBD is below $1. You will get $1 of HIVE in 3.5 days.", + "power-up-sub-title": "Mga impluwensyang token na magbibigay sayo ng higit na kontrol sa mga kabayaran ng mga post at magbibigay sayo ng pagkakataon na magkaroon ng mga gantimpala sa iyong pangangasiwa.", + "convert-sub-title": "Rekomendado lamang kung ang HBD ay mas mababa sa $1. Ikaw ay magkakaroon ng $1 na HIVE sa loob ng 3.5 na araw.", "delegate-title": "Magpahiram", "delegate-sub-title": "Magpahiram ng Hive Power", - "power-down-title": "Power Down", - "power-down-sub-title": "Power Down Hive Power", - "from": "From", - "to": "To", + "power-down-title": "Magpahina", + "power-down-sub-title": "Pahinain ang Hive Power", + "from": "Mula sa", + "to": "Para kay", "to-placeholder": "bansag", "to-not-found": "Ang gumagamit na nais mong paglipatan ng mga pondo ay hindi umiiral!", "to-bad-actor": "Maging maingat sa pagpapadala sa account na ito. Mangyaring suriin ng dalawang ulit kung tama ang iyong pagbabaybay para sa posibleng phishing.", - "amount": "Amount", - "amount-placeholder": "amount", - "wrong-amount": "Wrong amount value", - "amount-precision-error": "Use only 3 digits of precision", - "balance": "Balance", + "amount": "Halaga", + "amount-placeholder": "halaga", + "wrong-amount": "Maling halaga ng kabuluhan", + "amount-precision-error": "Gamitin lang ang 3 numero ng kawastuhan", + "balance": "Balanse", "power-down-estimated": "+ {{n}} Lingguhang Tinataya", - "memo": "Memo", - "memo-placeholder": "enter your notes here", + "memo": "Paunawa", + "memo-placeholder": "ilagay ang iyong paalala dito", "memo-help": "This memo is public", "available-hp-hint": "* available hive power", "confirm-title": "Confirm your transaction", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "Ano ang Hive blockchain?", "what-is-hive-body": "Ang Hive ay isang blockchain na idinesenyong maging mabilis, walang bayad, desentralisado, walang sensor na plataporma para sa Web3.0 na mga aplikasyon, na likas na katangian kung saan an mga mamumuhunan ay magkakaroon ng mga gantimpala sa pamamagitan ng paglalagak ng puhunan, pag-post, paglalaro ng mga laro sa blockchain, at pakikipagkalakal - na lahat ay ginagawa na walang anuman o sinuman bilang kasangkapan (desentralisado) sa pakikipagkalakal.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/fr-FR.json b/src/common/i18n/locales/fr-FR.json index 0305cf3bbe5..7397ce8eaf8 100644 --- a/src/common/i18n/locales/fr-FR.json +++ b/src/common/i18n/locales/fr-FR.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "Voir le contexte entier", "comment-entry-go-parent": "Voir le message parent", "show-history": "Voir l'historique de modifications", - "hidden-warning": "Ce message a été masqué en raison de notes faibles." + "hidden-warning": "Ce message a été masqué en raison de notes faibles.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Modifier l'historique", @@ -753,7 +755,7 @@ "page-title": "FAQ Ecency", "page-sub-title": "Table des matières", "what-is-ecency-header": "Qu'est-ce qu'Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Est-il possible de publier un post en temps qu'invité sur votre site ?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Une nouvelle version est disponible", + "download": "Download", "update": "Mettre à jour", "dismiss": "Ignorer", "downloading": "Téléchargement de la nouvelle version...", diff --git a/src/common/i18n/locales/he-IL.json b/src/common/i18n/locales/he-IL.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/he-IL.json +++ b/src/common/i18n/locales/he-IL.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/hi-IN.json b/src/common/i18n/locales/hi-IN.json index dd5b2ea8fd9..f2f70e1df01 100644 --- a/src/common/i18n/locales/hi-IN.json +++ b/src/common/i18n/locales/hi-IN.json @@ -61,7 +61,7 @@ "header-community": "समुदाय" }, "switch-lang": { - "contributors": "Contributors" + "contributors": "योगदानकर्ता" }, "user-nav": { "wallet": "वटुवा", @@ -181,7 +181,9 @@ "comment-entry-go-root": "पूरा संदर्भ देखें", "comment-entry-go-parent": "सीधा मूल जनक को देखें", "show-history": "संपादित इतिहास दिखाएं", - "hidden-warning": "यह पोस्ट गुप्त था निम्न मूल्यांकन के कारण." + "hidden-warning": "यह पोस्ट गुप्त था निम्न मूल्यांकन के कारण.", + "address-copy": "पोस्ट पता कापी करे", + "address-copied": "क्लिपबोर्ड पर पोस्ट पता कॉपी किया गया।" }, "edit-history": { "title": "इतिहास संपादित करें", @@ -364,7 +366,7 @@ "transfer": "स्थानांतरण", "transfer-to-savings": "बचत खाते में स्थांतरण करें", "convert": "बदलें", - "power-up": "शक्ति प्रापक", + "power-up": "पावर उप करे", "withdraw-hive": "हाइव निकालें", "withdraw-hbd": "हाइव डॉलर निकालें", "delegate": "प्रतिनिधि", @@ -753,7 +755,7 @@ "page-title": "इसेंसी केअक्सर पूछे जाने वाले प्रश्न", "page-sub-title": "विषय - सूची", "what-is-ecency-header": "इसेंसी क्या है?", - "what-is-ecency-body": "इसेंसी एकब्लॉकचेन आधारित सोशल नेटवर्क - द्वारा संचालित हाइव.
इसेंसी oसामग्री रचनाकारों के लिए बिना सेंसर किए, मुफ्त, असीम, पुरस्कृत मंच।
द्वारा शुरू और स्थापित किया गया था @good-karmaअगस्त 2016 में एक वैकल्पिक सामाजिक नेटवर्क के रूप में। तब से परियोजना योगदानकर्ताओं के बहुत बड़े समूह (अनुवादक, परीक्षक, डेवलपर्स, प्रभावितकर्ता, सामग्री निर्माता और उपभोक्ता) के रूप में विकसित हुई है जिन्होंने आकार देने में मदद की है इसेंसी|
इसेंसी ब्लॉकचैन तकनीक में उन लोगों की मदद करने में मदद करता है जहां उपयोगकर्ता अपने समय, संसाधनों के लिए भुगतान कर रहे हैं और ब्लॉकचैन के सामाजिक पहलुओं का आनंद लेते हुए सीखते हैं। उपयोग में आसानी के माध्यम से, उपयोगकर्ता न केवल सीखते हैं, बल्कि प्रौद्योगिकी और समुदाय के निवेशक, नवाचारकर्ता भी बन जाते हैं।
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "हाइव ब्लॉकचेन क्या है?", "what-is-hive-body": "हाइव एक ब्लॉकचेन है जिसे Web3.0 अनुप्रयोगों के लिए तेज, महसूस, विकेन्द्रीकृत, बिना सेंसर वाले प्लेटफॉर्म के साथ बनाया गया था, जिसमें बिल्ट-इन फीचर्स हैं जहां स्टेक होल्डर स्टेकिंग, क्यूरेटिंग, पोस्टिंग, गेम खेल, ट्रेडिंग - सभी के द्वारा पुरस्कार अर्जित कर सकते हैं बिना किसी मध्य पुरुष (विकेंद्रीकृत) के। हाइव ब्लॉकचैन पर टोकन को हाइव, हाइव डॉलर, हाइव पावर कहा जाता है|
", "what-is-difference-header": "इसेंसी और अन्य हाइव इंटरफेस के बीच अंतर क्या है?", @@ -763,11 +765,11 @@ "how-ecency-works-header": "इसेंसी काम कैसे करता है?", "how-ecency-works-body": "इक्वेंसी स्टोर और ब्लॉकचेन से डेटा पढ़ती है, और इस तरह डेटा सुलभ और बिना सेंसर किया जाता है। इक्वेंसी, ब्लॉकचेन के अंतर्निर्मित प्रोत्साहन तंत्र, टोकन (HIVE, HOL DOLLARS, HIVE POWER) के साथ-साथ पॉइंट्स के साथ सामग्री रचनाकारों को पुरस्कृत करती है। टोकन प्रमुख क्रिप्टोक्यूरेंसी एक्सचेंजों में खरीदे और बेचे जा सकते हैं (जैसे बिनेंस, बिट्रेक्स)। अंक प्लेटफॉर्म के भीतर उपयोग किए जा सकते हैं और माल, सेवाओं के लिए कारोबार किए जाते हैं।
", "how-to-join-header": "इसेंसी में कैसे शामिल हों?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "इसेंसी साइन इन कैसे करें?", - "how-to-signin-body": "आप अपने उपयोगकर्ता नाम और मास्टर पासवर्ड का उपयोग करके या सक्रिय निजी कुंजी का उपयोग करके एकांत में साइन-इन कर सकते हैं। हम सुरक्षा को बहुत गंभीरता से लेते हैं, इसीलिए हम आपकी निजी कुंजी को कभी संग्रहीत नहीं करते हैं, मोबाइल ऐप पर उन्हें आपकी पसंद के अतिरिक्त पिन कोड के साथ एन्क्रिप्ट किया जाता है, वेबसाइट पर वे कभी संग्रहीत नहीं होते हैं। आप भी उपयोग कर सकते हैंHivesigner OAuth2 प्रमाणीकरण सेवा आसानी से लॉगिन करने, प्रबंधित करने और कार्य करने के लिए।
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "रेफरल सिस्टम इसेंसी मै कैसे काम करता हैं?", - "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", + "how-referrals-work-body": "रेफरल प्रणाली सरल है, आप इस लिंक https://ecency.com/signup?referral=username में अपने उपयोगकर्ता नाम जोड़कर अपने दोस्तों को आमंत्रित कर सकते हैं और इसे अपने दोस्तों के साथ साझा कर सकते हैं। एक बार जब आपके दोस्त Ecency में शामिल हो जाते हैं और अपने पहले 250 अंक अर्जित करते हैं, तो आप 100 अंक अर्जित करेंगे। रेफरल और उसके इनाम पर कोई सीमा नहीं है।
", "what-is-points-header": "इसेंसी पॉइंट्स क्या हैं और कैसे इनका इस्तेमाल करें?", "what-is-points-body": "इसेंसी पॉइंट्स लगातार उन सभी उपयोगकर्ताओं के लिए पोषित और पुरस्कृत किए जाते हैं जो विभिन्न सामाजिक गतिविधियों के लिए वेबसाइट, मोबाइल या डेस्कटॉप ऐप पर काम करते हैं। अंकों का उपयोग आपकी सामग्री को बढ़ावा देने, बढ़ावा देने के लिए किया जा सकता है, यहां तक कि किसी अन्य उपयोगकर्ता को स्थानांतरित या उपहार में भी दिया जा सकता है। आप हमारे मोबाइल ऐप्स के साथ पॉइंट्स भी खरीद सकते हैं।
", "where-tokens-come-header": "टोकन कहाँ से आते हैं?", @@ -791,16 +793,16 @@ "what-spam-abuse-header": "स्पैम या दुरुपयोग क्या माना जाता है?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "क्या आपकी वेबसाइट पर पोस्ट करना संभव है?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", - "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "how-to-contribute-header": "इसेंसी में योगदान कैसे करें?", + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { - "title": "Contributors", - "description": "These great people contributed in one way or another to Ecency, we would like to thank them all. If you want to join our team by contributing with Translation, Ideas, Development, Designing, Social awareness, feel free to join. To learn more read our FAQ." + "title": "योगदानकर्ता", + "description": "इन महान लोगों ने एक या दूसरे तरीके से इक्विटी में योगदान दिया, हम उन सभी को धन्यवाद देना चाहते हैं। यदि आप अनुवाद, विचार, विकास, डिजाइनिंग, सामाजिक जागरूकता के साथ योगदान देकर हमारी टीम में शामिल होना चाहते हैं, तो बेझिझक शामिल हो सकते हैं। अधिक जानने के लिए हमारे पढ़ेंफएक्यू ." }, "context-menu": { "cut": "काटें", @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "नयी संस्करण उपलब्ध है!", + "download": "डाउनलोड करें", "update": "नवनीकरण", "dismiss": "ख़ारिज करें", "downloading": "नया संस्करण डाउनलोड हो रहा है...", diff --git a/src/common/i18n/locales/hr-HR.json b/src/common/i18n/locales/hr-HR.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/hr-HR.json +++ b/src/common/i18n/locales/hr-HR.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/hu-HU.json b/src/common/i18n/locales/hu-HU.json index 12622442feb..ac6cbf32f7a 100644 --- a/src/common/i18n/locales/hu-HU.json +++ b/src/common/i18n/locales/hu-HU.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "Teljes kontextus megtekintése", "comment-entry-go-parent": "Direkt felmenő megtekintése", "show-history": "Szerkesztési előzmények megjelenítése", - "hidden-warning": "Ez a bejegyzés alacsony reputáció miatt rejtett." + "hidden-warning": "Ez a bejegyzés alacsony reputáció miatt rejtett.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Szerkesztési előzmények", @@ -753,7 +755,7 @@ "page-title": "Ecency GYIK", "page-sub-title": "Tartalomjegyzék", "what-is-ecency-header": "Mi az Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "Mi a Hive blokklánc?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "Hogyan működik az Ecency?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "Hogyan jelentkezz be az Ecency-re?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Új verzió elérhető", + "download": "Download", "update": "Frissítés", "dismiss": "Elvetés", "downloading": "Új verzió letöltése...", diff --git a/src/common/i18n/locales/id-ID.json b/src/common/i18n/locales/id-ID.json index b9a47680f9d..0de61b30bae 100644 --- a/src/common/i18n/locales/id-ID.json +++ b/src/common/i18n/locales/id-ID.json @@ -27,7 +27,7 @@ "off": "Off", "yes": "Ya", "no": "Tidak", - "done": "Done" + "done": "Selesai" }, "confirm": { "title": "Apakah anda yakin?", @@ -61,7 +61,7 @@ "header-community": "Komunitas" }, "switch-lang": { - "contributors": "Contributors" + "contributors": "Kontributor" }, "user-nav": { "wallet": "Dompet", @@ -73,14 +73,14 @@ "gallery": "Galeri", "drafts": "Konsep", "bookmarks": "Tandai", - "schedules": "Schedules", + "schedules": "Jadwal", "logout": "Keluar", - "vote-power": "Vote Power:" + "vote-power": "Kekuatan Vote:" }, "intro": { - "title": "Aspire to greatness", - "sub-title": "rewarding communities", - "c2a": "Get Started" + "title": "Bangun impian menjadi besar", + "sub-title": "memberikan rewards kepada komunitas", + "c2a": "Mulai" }, "login": { "title": "Selamat datang kembali!", @@ -181,7 +181,9 @@ "comment-entry-go-root": "Lihat konteks lengkapnya", "comment-entry-go-parent": "Lihat sumber utamanya", "show-history": "Tampilkan riwayat edit", - "hidden-warning": "Posting ini tersembunyi dikarenakan peringkat rendah." + "hidden-warning": "Posting ini tersembunyi dikarenakan peringkat rendah.", + "address-copy": "Salin alamat postingan", + "address-copied": "Tempel alamat yang disalin ke papan klip." }, "edit-history": { "title": "Riwayat Penyuntingan", @@ -558,7 +560,7 @@ "title-placeholder": "Judul", "body-placeholder": "Konten Postingan", "reward": "Reward", - "reward-hint": "Set author reward ratio for liquid and staked tokens", + "reward-hint": "Tetapkan rasio imbalan penulis untuk token cair dan yang disimpan", "reward-default": "Default 50% / 50%", "reward-sp": "Power Up 100%", "reward-dp": "Menolak pembayaran", @@ -573,14 +575,14 @@ "clear": "Bersihkan", "published": "Postingan telah diterbitkan", "updated": "Postingan diperbarui", - "advanced": "Advanced", - "beneficiaries": "Beneficiaries", - "beneficiaries-hint": "Set beneficiaries to share author reward with other accounts", - "reblog": "Reblog", - "reblog-hint": "Auto share content to your blog", - "schedule": "Schedule", - "schedule-hint": "Auto publish content on specific time", - "scheduled": "Post scheduled" + "advanced": "Lanjutan", + "beneficiaries": "Penerima manfaat", + "beneficiaries-hint": "Atur penerima manfaat untuk berbagi rewards penulis dengan akun lainnya", + "reblog": "Bagikan", + "reblog-hint": "Bagi otomatis konten ke blog Anda", + "schedule": "Jadwal", + "schedule-hint": "Terbitkan konten otomatis pada waktu tertentu", + "scheduled": "Postingan yang dijadwalkan" }, "tag-selector": { "placeholder-empty": "Tagar. Tagar pertama adalah kategori utama. Mudah disortir.", @@ -599,17 +601,17 @@ "read-time-n-min": "~ {{n}} menit dibaca" }, "beneficiary-editor": { - "title": "Beneficiaries", - "btn-label": "Set Beneficiaries", - "btn-label-n": "Set Beneficiaries ({{n}})", - "username": "Username", - "reward": "Reward", - "user-error": "{{n}} is not a valid user.", - "user-exists-error": "{{n}} is already in the list" + "title": "Penerima manfaat", + "btn-label": "Atur Penerima Manfaat", + "btn-label-n": "Atur Penerima Manfaat ({{n}})", + "username": "Nama Pengguna", + "reward": "Imbalan", + "user-error": "{{n}} bukan pengguna sah.", + "user-exists-error": "{{n}} sudah ada dalam daftar" }, "post-scheduler": { - "title": "Schedule", - "btn-label": "Schedule" + "title": "Jadwal", + "btn-label": "Jadwal" }, "notification": { "popup-title": "Anda memiliki pemberitahuan baru", @@ -695,7 +697,7 @@ "proxy-active-description": "Anda telah menetapkan pemungutan suara proxy. Jika Anda ingin mengaktifkan kembali pemungutan suara secara manual, harap hapus proxy Anda.", "proxy-active-current": "Proxy anda sekarang", "proxy-active-btn-label": "Hapus proxy", - "proxy-votes-for": "@{{username}} votes for" + "proxy-votes-for": "@{{username}} vote untuk" }, "proposals": { "page-title": "Proposal", @@ -725,8 +727,8 @@ "title": "Konsep" }, "schedules": { - "title": "Scheduled Posts", - "move": "Move to drafts" + "title": "Postingan terjadwal", + "move": "Pindahkan ke konsep" }, "bookmarks": { "title": "Bookmark" @@ -753,33 +755,33 @@ "page-title": "Pertanyaan tentang Ecency", "page-sub-title": "Daftar Isi", "what-is-ecency-header": "Apa itu Ecency?", - "what-is-ecency-body": "Ecency adalah jaringan sosial berbasis blockchain - diberdayakan oleh Hive .
Ecency menawarkan platform yang tidak disensor, gratis, tanpa batas, dan bermanfaat bagi pembuat konten.
Proyek dimulai dan didirikan oleh @ good-karma pada Agustus 2016 sebagai jaringan sosial alternatif. Sejak saat itu, proyek telah berkembang menjadi kelompok kontributor yang jauh lebih besar (penerjemah, penguji, pengembang, pemberi pengaruh, pembuat konten, dan konsumen) yang membantu membentuk Ecency.
Ecency membantu banyak orang memasukkan teknologi Blockchain di mana pengguna dibayar untuk waktu, sumber daya, dan belajar mereka sambil menikmati aspek sosial blockchain. Melalui kemudahan penggunaan, pengguna tidak hanya belajar tetapi juga menjadi investor, inovator teknologi, dan komunitas.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "Apa itu Hive Blockchain?", "what-is-hive-body": "Hive adalah blockchain yang dirancang untuk menjadi platform yang cepat, nyaman, terdesentralisasi, tanpa sensor untuk aplikasi Web3.0, dengan fitur bawaan di mana pemegang saham dapat memperoleh hadiah dengan mempertaruhkan, mengkurasi, membuat konten, bermain game, berdagang - semuanya tanpa perantara (desentralisasi). Token di blockchain Hive yang disebut HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "Apa perbedaan antara Ecency dan aplikasi Hive lainnya?", - "what-is-difference-body": "The primary differences in all interfaces or applications are in their feature-set, use cases. Ecency offers website, mobile and desktop applications for ease of access and with best security in mind. Accessible, opensource and innovative, built and owned by users. Aspire for greatness!
", + "what-is-difference-body": "Perbedaan utama di semua antarmuka atau aplikasi terletak pada pengaturan fiturnya, kasus penggunaannya. Ecency menawarkan aplikasi dalam bentu situs web, seluler dan desktop untuk kemudahan akses dan dengan mempertimbangkan keamanan terbaik. Ecency dapat diakses dengan mudah, bersumber terbuka dan inovatif, dibangun dan dimiliki oleh pengguna sendiri. Bangun impian terbesar bersama Ecency!
", "why-choose-ecency-header": "Mengapa saya memilih Ecency?", - "why-choose-ecency-body": "Tailored feature set to empower you to create, inspire your audience and community. Ecency mobile application giving you on-go solution. With desktop app you are always sure to get uncensored content right from the blockchain, with website reach thousands of readers accross globe with best ranked content on search engines. State of art security measures so your keys will always stay encrypted and out of reach for ill-intentioned individuals. Fast and beautiful website, helps you to get discovered online and gain exposure for your content and gain loyal followers and readers. Build your community with Ecency today and take advantages of emerging blockchain technology and uncensored content, true free speech!
", + "why-choose-ecency-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", + "how-ecency-works-body": "Ecency menyimpan dan membaca data dari blockchain, dan dengan demikian data dapat diakses dan tidak disensor. Ecency memberikan reward kepada pembuat konten dengan mekanisme insentif bawaan dari blockchain, dengan token (HIVE, HIVE DOLLAR, HIVE POWER) serta ada Poinnya juga. Token dapat dibeli dan dijual di bursa mata uang kripto besar (contohnya seperti Binance, Bittrex).Poin dapat digunakan dalam platform dan diperdagangkan untuk barang, jasa.
", "how-to-join-header": "Bagaimana bergabung dengan Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "Bagaimana masuk ke Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "Bagaimana sistem referal bekerja pada Ecency?", - "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", + "how-referrals-work-body": "Sistem referral itu sederhana, Anda dapat mengundang teman-teman Anda dengan menambahkan nama pengguna Anda di tautan ini https://ecency.com/signup?referral=username dan membagikannya dengan teman-teman Anda. Setelah teman Anda bergabung dengan Ecency dan mendapatkan 250 Poin pertama mereka, Anda akan mendapatkan 100 Poin. Tidak ada batasan untuk referensi dan imbalannya.
", "what-is-points-header": "Apa itu Poin Ecency dan bagaimana menggunakannya?", "what-is-points-body": "Poin Ecency terus-menerus dicetak dan dihadiahkan untuk semua pengguna untuk berbagai aktivitas sosial yang mereka lakukan di situs web, aplikasi seluler atau desktop. Poin dapat digunakan untuk mempromosikan, meningkatkan konten Anda, bahkan dapat ditransfer atau dihadiahkan kepada pengguna lain. Anda juga dapat membeli Poin dengan aplikasi seluler kami.
", "where-tokens-come-header": "Dari mana token berasal?", - "where-tokens-come-body": "The Hive network continually creates new digital tokens to reward content creators and curators. Some of the newly-created tokens are transferred to users who add value to platform by posting, commenting, and voting on other people's posts. The remainder is distributed to holders of HIVE POWER and the witnesses that secures the blockchain.
", + "where-tokens-come-body": "Jaringan Hive tetap membuat token digital baru untuk memberikan rewards kepada pembuat konten dan kurator. Beberapa token yang baru dibuat untuk ditransfer ke pengguna yang memberi nilai tambah pada platform dengan membuat postingan, berkomentar, dan memberikan suara pada postingan orang lain. Sisanya didistribusikan kepada pemegang HIVE POWER dan saksi yang mengamankan blockchain.
", "how-promotion-work-header": "Bagaimana promosi konten bekerja?", - "how-promotion-work-body": "Promoting content on Ecency is very simple and easy. Ecency Points are used to promote content for 1, 2, 3, 7 or 14 days to get more exposure. Promoted posts are shuffled across the feeds to all users in mobile app, desktop app and website. There is no limit or restrictions, any post can be promoted to get more exposure and engagement. We hold right to remove posts from promotion list if it violates certain internet etiquette.
", + "how-promotion-work-body": "Mempromosikan konten di Ecency sangat sederhana dan mudah. Ecency Points digunakan untuk mempromosikan konten selama 1, 2, 3, 7 atau 14 hari untuk mendapatkan lebih banyak eksposur. Postingan yang dipromosikan diacak di seluruh feed ke semua pengguna di aplikasi seluler, aplikasi desktop, dan situs web. Tidak ada batasan atau batasan, posting apa pun dapat dipromosikan untuk mendapatkan lebih banyak eksposur dan keterlibatan. Kami memiliki hak untuk menghapus postingan dari daftar promosi jika melanggar etiket internet tertentu.
", "how-boosting-work-header": "Bagaimana promosi konten bekerja?", "how-boosting-work-body": "Poin dapat digunakan untuk meningkatkan konten (postingan dan komentar). Permintaan peningkatan ditinjau secara manual oleh moderator dan kurator kami yang mungkin memerlukan waktu hingga 24 jam.
Sebagai bagian dari pemeriksaan kualitas, kami dapat mempertimbangkan: a) Konten adalah konten asli, b) Tidak terdeteksi oleh cheetah, mackbot, hivewatchers, atau daftar hitam lainnya, dll. c) Pengguna tidak ada dalam daftar hitam Ecency karena perilaku yang kasar.
Boosting tidak menjamin kurasi, jika konten tidak dikurasi dalam waktu 24 jam, Poin akan dikembalikan.", "how-to-transfer-header": "Bagaimana mentransfer token blockchain?", "how-to-transfer-body": "Setelah masuk, Anda akan menemukan halaman Wallet di header atas pada situs web dan aplikasi desktop atau di halaman Profil, bilah navigasi bawah pada aplikasi seluler. Di halaman dompet, Anda dapat memulai transfer token apa pun yang Anda miliki ke pengguna lain atau akun exchange, klik panah di sebelah saldo Anda dan temukan operasi transfer. Transfer tidak dapat diubah karena terdaftar di blockchain, pastikan untuk mengirim ke penerima yang benar.
", "how-see-rewards-header": "Bagaimana saya melihat reward postingan saya?", - "how-see-rewards-body": "In Wallet page (in top header on website and desktop app, bottom navigation bar on mobile app), you can see Curation rewards (the rewards earned for upvoting posts and comments) and Author rewards (the rewards earned by your own posts and comments)
You can also view the same information for other users by visiting their wallet profile.
", + "how-see-rewards-body": "Di halaman Wallet (di header atas di situs web dan aplikasi desktop, bilah navigasi bawah di aplikasi seluler), Anda dapat melihat rewards Kurasi (rewards yang diperoleh untuk postingan dan komentar yang disukai) dan rewards Penulis (rewards yang diperoleh dari posting dan komentar Anda sendiri)
Anda juga dapat melihat informasi yang sama untuk pengguna lain dengan mengunjungi profil dompet mereka.
", "how-dhf-work-header": "Bagaimana Cara kerja DHF?", "how-dhf-work-body": "Siapapun dapat membuat proposal dan meyakinkan komunitas untuk memberikan suara pada proposal mereka untuk mendapatkan dana. Sebelum membuat proposal, posting normal harus dipublikasikan di blockchain dan disarankan untuk mengumpulkan umpan balik sebelum membuat proposal. Pembuatan proposal dikenakan biaya 10 HBD + 1 HBD untuk setiap hari berlangsung selama 60 hari.
Setelah proposal mencapai ambang tertentu dari suara yang dihitung, itu akan mulai menerima dana setiap jam. Jika proposal berada di bawah ambang batas, sistem akan menghentikan pendanaan untuk proposal tersebut. Anda dapat memilih proposal sebanyak yang Anda inginkan, tidak ada batasan. Proposal tidak dapat diedit, tetapi dapat dihapus / ditarik oleh pembuatnya.
", "when-claim-rewards-header": "Kapan saya bisa klaim rewards?", @@ -789,18 +791,18 @@ "how-boost-account-header": "Bagaimana meminta peningkatan akun?", "how-boost-account-body": "Jika akun Anda kekurangan Kredit Sumber Daya , Anda dapat meminta peningkatan akun dari Ecency. Anda akan menerima delegasi sementara yang akan meningkatkan akun Anda untuk melakukan lebih banyak aktivitas di blockchain. Anda dapat menemukan fitur peningkatan akun di opsi Poin.
", "what-spam-abuse-header": "Apa yang dianggap spam atau penyalahgunaan?", - "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Apakah mungkin untuk menerima postingan di situs web Anda?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", - "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "how-to-contribute-header": "Bagaimana berkontribusi di Ecency?", + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { - "title": "Contributors", - "description": "These great people contributed in one way or another to Ecency, we would like to thank them all. If you want to join our team by contributing with Translation, Ideas, Development, Designing, Social awareness, feel free to join. To learn more read our FAQ." + "title": "Kontributor", + "description": "Orang-orang hebat ini berkontribusi dalam satu atau lain cara untuk Ecency, kami ingin berterima kasih kepada mereka semua. Jika Anda ingin bergabung dengan tim kami dengan berkontribusi dalam Penerjemahan, Ide, Pengembangan, Desain, Kesadaran sosial, silakan bergabung. Untuk mempelajari lebih lanjut, bacaFAQ kami." }, "context-menu": { "cut": "Potong", @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Tersedia versi terbaru", + "download": "Unduh", "update": "Pembaruan", "dismiss": "Memberhentikan", "downloading": "Sedang mengunduh versi terbaru...", diff --git a/src/common/i18n/locales/it-IT.json b/src/common/i18n/locales/it-IT.json index ff974666cee..27e5b1a65be 100644 --- a/src/common/i18n/locales/it-IT.json +++ b/src/common/i18n/locales/it-IT.json @@ -27,7 +27,7 @@ "off": "Spegni", "yes": "Si", "no": "No", - "done": "Done" + "done": "Fatto" }, "confirm": { "title": "Sei sicuro?", @@ -61,7 +61,7 @@ "header-community": "Communities" }, "switch-lang": { - "contributors": "Contributors" + "contributors": "Hanno collaborato" }, "user-nav": { "wallet": "Portafoglio", @@ -73,9 +73,9 @@ "gallery": "Galleria", "drafts": "Bozze", "bookmarks": "Segnalibri", - "schedules": "Schedules", + "schedules": "Programmi", "logout": "Esci", - "vote-power": "Vote Power:" + "vote-power": "Potere di Voto:" }, "intro": { "title": "Aspira alla grandezza", @@ -181,7 +181,9 @@ "comment-entry-go-root": "Vedi l'intero Post", "comment-entry-go-parent": "Vedi commento genitore", "show-history": "Mostra la cronologia delle modifiche", - "hidden-warning": "Questo post è stato nascosto a causa dello scarso punteggio qualità." + "hidden-warning": "Questo post è stato nascosto a causa dello scarso punteggio qualità.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Modifica cronologia", @@ -558,7 +560,7 @@ "title-placeholder": "Titolo", "body-placeholder": "Contenuto del post", "reward": "Ricompensa", - "reward-hint": "Set author reward ratio for liquid and staked tokens", + "reward-hint": "Imposta la percentuale di ricompensa per token liquidi e in staking", "reward-default": "Predefinito 50% / 50%", "reward-sp": "Potenziamento 100%", "reward-dp": "Rifiuta pagamento", @@ -573,14 +575,14 @@ "clear": "Pulisci", "published": "Post pubblicato", "updated": "Post aggiornato", - "advanced": "Advanced", - "beneficiaries": "Beneficiaries", - "beneficiaries-hint": "Set beneficiaries to share author reward with other accounts", - "reblog": "Reblog", - "reblog-hint": "Auto share content to your blog", - "schedule": "Schedule", - "schedule-hint": "Auto publish content on specific time", - "scheduled": "Post scheduled" + "advanced": "Avanzate", + "beneficiaries": "Beneficiari", + "beneficiaries-hint": "Imposta i beneficiari per condividere le ricompense d'autore con altri account", + "reblog": "Reblogga", + "reblog-hint": "Condividi automaticamente il contenuto sul tuo blog", + "schedule": "Pianifica", + "schedule-hint": "Pubblica automaticamente il contenuto in un giorno e un'ora prefissati", + "scheduled": "Post programmato" }, "tag-selector": { "placeholder-empty": "Etichette. La prima etichetta è la categoria principale che classificherà il post.", @@ -599,17 +601,17 @@ "read-time-n-min": "~ {{n}} minuti di lettura" }, "beneficiary-editor": { - "title": "Beneficiaries", - "btn-label": "Set Beneficiaries", - "btn-label-n": "Set Beneficiaries ({{n}})", - "username": "Username", - "reward": "Reward", - "user-error": "{{n}} is not a valid user.", - "user-exists-error": "{{n}} is already in the list" + "title": "Beneficiari", + "btn-label": "Imposta Beneficiari", + "btn-label-n": "Imposta Beneficiari ({{n}})", + "username": "Nome utente", + "reward": "Ricompensa", + "user-error": "{{n}} non è un utente valido.", + "user-exists-error": "{{n}} è già nella lista" }, "post-scheduler": { - "title": "Schedule", - "btn-label": "Schedule" + "title": "Pianifica", + "btn-label": "Pianifica" }, "notification": { "popup-title": "Hai una nuova notifica", @@ -695,7 +697,7 @@ "proxy-active-description": "Hai impostato un votante delegato. Se volessi riattivare il voto manuale, ti preghiamo di rimuovere il tuo delegato.", "proxy-active-current": "Attualmente, il tuo delegato è", "proxy-active-btn-label": "Rimuovi Delegato", - "proxy-votes-for": "@{{username}} votes for" + "proxy-votes-for": "@{{username}} vota per" }, "proposals": { "page-title": "Propositi", @@ -725,8 +727,8 @@ "title": "Bozze" }, "schedules": { - "title": "Scheduled Posts", - "move": "Move to drafts" + "title": "Post Programmati", + "move": "Sposta nelle bozze" }, "bookmarks": { "title": "Segnalibri" @@ -753,33 +755,33 @@ "page-title": "Domande frequenti su Ecency", "page-sub-title": "Indice", "what-is-ecency-header": "Che cos'è Ecency?", - "what-is-ecency-body": "Ecency è un social network basato su blockchain - alimentato dalla blockchain Hive.
Ecency offre una libera, illimitata, incensurata, esperienza su una piattaforma remunerata per creatori di contenuti.
Il progetto è stato fondato e lanciato da @good-karma nell'Agosto 2016 come un social network alternativo. Da lì, il progetto è cresciuto grazie a un nutritissimo gruppo di contributori (traduttori, tester, sviluppatori, influencer, creatori di contenuti e utenti base) che hanno aiutato a dare forma ad Ecency.
Ecency aiuta le persone che stanno entrando nel panorama della tecnologia blockchain dove gli utenti vengono pagati per il loro tempo e le loro risorse, e imparano mentre godono dei benefici sociali della blockchain. Attraverso la facilità d'uso, gli utenti non solo imparano ma diventano anche investitori e innovatori, sia per la tecnologia che per il modo di affrontare il mondo delle community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "Che cos'è la blockchain Hive?", "what-is-hive-body": "Hive è una blockchain disegnata per essere una piattaforma veloce, economica, non censurabile e decentralizzata adatta alle applicazioni per il Web3.0, dotata di strumenti nativi dove i titolari dell'investimento possono guadagnare bloccando in stake, curando contenuti, postando, giocando, scambiando asset - il tutto senza alcun intermediario (concetto di decentralizzazione). I token della blockchain Hive si chiamano HIVE, HIVE DOLLARS, e HIVE POWER.
", "what-is-difference-header": "Qual'è la differenza tra Ecency e le altre interfacce basate su Hive?", - "what-is-difference-body": "The primary differences in all interfaces or applications are in their feature-set, use cases. Ecency offers website, mobile and desktop applications for ease of access and with best security in mind. Accessible, opensource and innovative, built and owned by users. Aspire for greatness!
", + "what-is-difference-body": "Nelle interfacce e nelle applicazioni, le principali differenze sono rappresentate dagli insiemi d'impostazioni e da come vengono utilizzate nella pratica. Ecency offre un sito web, applicazioni desktop e mobili per fornire un semplice metodo di accesso tenendo sempre a mente la sicurezza. Accessibile, open source a innovativo, costruito e detenuto dagli utenti. Punta in alto!
", "why-choose-ecency-header": "Perché dovrei scegliere Ecency?", - "why-choose-ecency-body": "Tailored feature set to empower you to create, inspire your audience and community. Ecency mobile application giving you on-go solution. With desktop app you are always sure to get uncensored content right from the blockchain, with website reach thousands of readers accross globe with best ranked content on search engines. State of art security measures so your keys will always stay encrypted and out of reach for ill-intentioned individuals. Fast and beautiful website, helps you to get discovered online and gain exposure for your content and gain loyal followers and readers. Build your community with Ecency today and take advantages of emerging blockchain technology and uncensored content, true free speech!
", + "why-choose-ecency-body": "Impostazioni su misura per agevolarti nella creazione, ispirando i tuoi ascoltatori e la tua community. L'app mobile Ecency ti fornisce una soluzione dinamica. Con l'app desktop sei sempre sicuro di avere i giusti contenuti non censurati dalla blockchain. Con il sito web raggiungi migliaia di lettori sparsi per il globo, con i migliori post addirittura indicizzati sui motori di ricerca. Misure di sicurezza all'avanguardia così che le tue chiavi rimangano sempre criptate e non raggiungibili da utenti malintenzionati. Un gradevole e veloce sito web ti aiuta a essere trovato online e a ottenere visibilità, guadagnando lettori e seguaci fedeli. Costruisci la tua community con Ecency oggi e ottieni i vantaggi dall'emergente tecnologia blockchain e dai contenuti incensurati, vero esempio di libertà di espressione!
", "how-ecency-works-header": "Come funziona Ecency?", - "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", + "how-ecency-works-body": "Ecency custodisce e legge i dati che arrivano dalla blockchain, e ognuno di questi dati è accessibile e incensurato. Ecency ricompensa i creatori di contenuti con un meccanismo di incentivo integrato nella blockchain, attraverso i token (HIVE, HIVE DOLLARS, HIVE POWER) come anche attraverso i propri Punti. I token possono essere acquistati e venduti su alcuni dei maggiori exchange di criptovaluta (ad esempio Binance e Bittrex). I punti possono essere utilizzati all'interno della piattaforma e scambiati per prodotti o servizi.
", "how-to-join-header": "Come unirsi a Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "Come accedere a Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "Come funziona il sistema di raccomandazione su Ecency?", - "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", + "how-referrals-work-body": "Il sistema di raccomandazione è semplice, puoi invitare i tuoi amici aggiungendo il tuo username in questo link https://ecency.com/signup?referral=username e condividerlo con i tuoi amici. Una volta che i tuoi amici sono iscritti a Ecency e hanno guadagnato i loro primi 250 punti, tu verrai ricompensato con 100 punti. Non ci sono limiti alle raccomandazioni e alle ricompense loro collegate.
", "what-is-points-header": "Che cosa sono i punti Ecency e come usarli?", - "what-is-points-body": "Ecency Points are continually minted and rewarded for all users for various social activities they perform on website, mobile or desktop app. Points can be used for promoting, boosting your content, can even be transferred or gifted to another user. You can also purchase Points with our mobile apps.
", + "what-is-points-body": "I punti Ecency vengono creati continuamente e assegnati a tutti gli utenti che svolgono varie azioni social sul sito web, sull'app mobile o su quella desktop. I punti possono essere utilizzati per promuovere o effettuare un boost dei tuoi contenuti, o anche essere trasferiti o regalati ad altri utenti. Puoi anche acquistare punti con la nostra app mobile.
", "where-tokens-come-header": "Da dove arrivano i Token?", - "where-tokens-come-body": "The Hive network continually creates new digital tokens to reward content creators and curators. Some of the newly-created tokens are transferred to users who add value to platform by posting, commenting, and voting on other people's posts. The remainder is distributed to holders of HIVE POWER and the witnesses that secures the blockchain.
", + "where-tokens-come-body": "La rete Hive crea continuamente nuovi token digitali per ricompensare i creatori di contenuti e i curatori. Alcuni dei token appena creati vengono trasferiti agli utenti che aggiungono valore alla piattaforma postando, commentando e votando i post di altre persone. La rimanente parte viene distribuita tra i detentori di HIVE POWER e i validatori che mantengono in sicurezza la blockchain.
", "how-promotion-work-header": "Come funziona la promozione dei contenuti?", - "how-promotion-work-body": "Promoting content on Ecency is very simple and easy. Ecency Points are used to promote content for 1, 2, 3, 7 or 14 days to get more exposure. Promoted posts are shuffled across the feeds to all users in mobile app, desktop app and website. There is no limit or restrictions, any post can be promoted to get more exposure and engagement. We hold right to remove posts from promotion list if it violates certain internet etiquette.
", + "how-promotion-work-body": "Promuovere contenuti su Ecency è molto semplice e veloce. I Punti Ecency vengono usati per promuovere contenuti per 1, 2, 3, 7 o 14 giorni così da ottenere maggior visibilità. I post promossi vengono mescolati ai post che compaiono nei feed degli altri utenti sull'app mobile, desktop o sul sito web. Non ci sono limiti o restrizioni, ogni post può essere promosso per ottenere più visibilità e interazioni. Ci riserviamo di poter rimuovere post dall'elenco dei promossi qualora violassero alcune regole basilari per la convivenza civile sul web.
", "how-boosting-work-header": "Come funziona il boost dei contenuti?", - "how-boosting-work-body": "Points can be used for boosting content (post and comments). Boosting requests are manually reviewed by our moderators and curators which might take upto 24 hours.
As part of the qualities check, we may consider: a) Content is original content, b) Not detected by cheetah, mackbot, hivewatchers, or any other blacklists etc. c) User is not in Ecency blacklist due to abusive behavior.
Boosting does not guarantee curation, if content is not curated within 24 hours Points will be refunded.", + "how-boosting-work-body": "I punti possono essere usati per un boost dei contenuti (post e commenti). Le richieste di boost sono revisionate manualmente dai nostri moderatori e curatori i quali possono impiegare fino a 24 ore dalla richiesta.
Come parte integrante del controllo qualità, possiamo considerare: a)se un contenuto è originale; b)che non venga segnalato da cheetah, mackbot, hivewatchers, o qualunque altra blacklist; c)che l'utente non appaia nella blacklist di Ecency a causa di comportamenti aggressivi o altri abusi.
Effettuare un boost non garantisce la curation, e se il post non viene curato nelle 24 ore successive i punti verranno rimborsati.", "how-to-transfer-header": "Come trasferire i token della blockchain?", - "how-to-transfer-body": "After login, you will find Wallet page in top header on website and desktop app or in Profile page, bottom navigation bar on mobile app. In wallet page you can initiate transfer of any token you hold to another user or exchange accounts, click on arrow next to your balance and find transfer operations. Transfers are irreversible because they are registered on blockchain, make sure to send correct recipient.
", + "how-to-transfer-body": "Dopo l'accesso, troverai la pagina portafoglio in alto nell'intestazione sul sito web e sull'app desktop oppure nella pagina profilo, e in basso nella barra di navigazione sull'app mobile. Nella pagina portafoglio puoi avviare un trasferimento di qualsiasi dei Token che detieni verso altri account di utenti o exchange, cliccando sulla freccia che punta in basso vicina al tuo saldo e trovando le operazioni di trasferimento. Le transazioni sono irreversibili perché sono registrate sulla blockchain: assicurati d'inviare al corretto destinatario.
", "how-see-rewards-header": "Come vedo le ricompense del mio post?", - "how-see-rewards-body": "In Wallet page (in top header on website and desktop app, bottom navigation bar on mobile app), you can see Curation rewards (the rewards earned for upvoting posts and comments) and Author rewards (the rewards earned by your own posts and comments)
You can also view the same information for other users by visiting their wallet profile.
", + "how-see-rewards-body": "Nella pagina portafoglio (in alto nell'intestazione sul sito web e sull'app desktop, in basso nella barra di navigazione sull'app mobile), puoi vedere le ricompense da curatore (le ricompense guadagnate upvotando post e commenti) e le ricompense dell'autore (le ricompense guadagnate attraverso i tuoi post e i tuoi commenti).
Puoi anche vedere le stesse informazioni per altri utenti visitando la pagina portafoglio del loro profilo.
", "how-dhf-work-header": "Come funziona il DHF (Decentralized Hive Fund)?", "how-dhf-work-body": "Ognuno può creare una Proposta e convincere la community a votare per essa così da ricevere dei fondi. Prima di creare Proposte, dovrebbe essere pubblicato un post sulla blockchain ed è raccomandato raccogliere consensi. La creazione della Proposta obbliga al pagamento di una commissione di 10 HBD + 1 HBD giornaliero per durate oltre i 60 giorni.
Una volta che la proposta raggiunge una certa soglia di voto regolarmente conteggiato, inizia a ricevere fondi ogni ora. Se la proposta scende al di sotto di una certa soglia, il sistema blocca il trasferimento di fondi verso quella proposta. Tu puoi votare quante proposte vuoi, non ci sono limiti. Le proposte non possono essere modificate, ma possono essere eliminate/ritirate dai suoi creatori.
", "when-claim-rewards-header": "Quando posso richiedere le mie ricompense?", @@ -789,18 +791,18 @@ "how-boost-account-header": "Come richiedere il boost dell'account?", "how-boost-account-body": "Se il tuo account scarseggia di crediti di risorse, puoi richiedere un boost dell'account ad Ecency. Riceverai una delega temporanea che ti permetterà di portare a termine più attività sulla blockchain. Puoi trovare le funzioni di boost dell'account nella sezione Punti.
", "what-spam-abuse-header": "Che cosa è considerato spam o uso illecito?", - "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "È possibile ospitare post sul tuo sito web?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", - "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "how-to-contribute-header": "Come collaborare con Ecency?", + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { - "title": "Contributors", - "description": "These great people contributed in one way or another to Ecency, we would like to thank them all. If you want to join our team by contributing with Translation, Ideas, Development, Designing, Social awareness, feel free to join. To learn more read our FAQ." + "title": "Collaboratori", + "description": "Queste fantastiche persone hanno contribuito in un modo o nell'altro a Ecency e ci piacerebbe ringraziarle. Se vuoi unirti al nostro team contribuendo con Traduzioni, Idee, Sviluppo, Design, Divulgazione di conoscenze social, sei libero di partecipare. Per maggiori informazioni leggi le nostre FAQ." }, "context-menu": { "cut": "Taglia", @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Una nuova versione è disponibile", + "download": "Download", "update": "Aggiorna", "dismiss": "Abbandona", "downloading": "Scarica la nuova versione...", diff --git a/src/common/i18n/locales/ja-JP.json b/src/common/i18n/locales/ja-JP.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/ja-JP.json +++ b/src/common/i18n/locales/ja-JP.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/ka-GE.json b/src/common/i18n/locales/ka-GE.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/ka-GE.json +++ b/src/common/i18n/locales/ka-GE.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/kk-KZ.json b/src/common/i18n/locales/kk-KZ.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/kk-KZ.json +++ b/src/common/i18n/locales/kk-KZ.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/ko-KR.json b/src/common/i18n/locales/ko-KR.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/ko-KR.json +++ b/src/common/i18n/locales/ko-KR.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/ku-TR.json b/src/common/i18n/locales/ku-TR.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/ku-TR.json +++ b/src/common/i18n/locales/ku-TR.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/ky-KG.json b/src/common/i18n/locales/ky-KG.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/ky-KG.json +++ b/src/common/i18n/locales/ky-KG.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/lt-LT.json b/src/common/i18n/locales/lt-LT.json index b801ac7e5a9..fdf43e7489e 100644 --- a/src/common/i18n/locales/lt-LT.json +++ b/src/common/i18n/locales/lt-LT.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "Peržiūrėti visą kontekstą", "comment-entry-go-parent": "Peržiūrėti pirminį", "show-history": "Rodyti redagavimo istoriją", - "hidden-warning": "Įrašas buvo paslėptas dėl per žemo reitingo." + "hidden-warning": "Įrašas buvo paslėptas dėl per žemo reitingo.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Redagavimo Istorija", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Turinys", "what-is-ecency-header": "Kas yra Ecency?", - "what-is-ecency-body": "Ecency tai blockchain grįstas socialus tinklas - maitinamas Hive.
Ecency siūlo necenzūruojama, nemokamą, nelimituotą, atlyginamąją platformą turinio kūrėjams.
Projektas iniciuotas ir sukurtas @good-karma 2016 rugpjūtį, kaip alternatyvi sociali platforma. Nuo tada projektas išaugo į ženkliai didesnę grupę kūrėjų ir remėjų (vertėjai, testuotojai, programuotojai, influenceriai, turinio kūrėjai ir vartotojai), kurie padėjo suformuoti Ecency.
Ecency palengvina kelią į Blockchain technologiją kur vartotojai gauna atlygį už skirtą laiką, resursus, bei suteikia geras galimybes plėsti akiratį besimėgaujanti socialiais blockcgain aspektais. Dėl lengvo pateikimo, vartotojai išmoksta, bei gali tapti šios technologijos ir bendruomenės investuotojais, inovatoriais.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "Kas yra Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "Kaip veikia Ecency?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "Kaip prisijungti pre Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "Kaip prisijungti į Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Galima nauja versija", + "download": "Download", "update": "Atnaujinimas", "dismiss": "Atmesti", "downloading": "Siunčiama nauja versija...", diff --git a/src/common/i18n/locales/lv-LV.json b/src/common/i18n/locales/lv-LV.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/lv-LV.json +++ b/src/common/i18n/locales/lv-LV.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/ms-MY.json b/src/common/i18n/locales/ms-MY.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/ms-MY.json +++ b/src/common/i18n/locales/ms-MY.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/ne-NP.json b/src/common/i18n/locales/ne-NP.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/ne-NP.json +++ b/src/common/i18n/locales/ne-NP.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/nl-NL.json b/src/common/i18n/locales/nl-NL.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/nl-NL.json +++ b/src/common/i18n/locales/nl-NL.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/no-NO.json b/src/common/i18n/locales/no-NO.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/no-NO.json +++ b/src/common/i18n/locales/no-NO.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/pa-IN.json b/src/common/i18n/locales/pa-IN.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/pa-IN.json +++ b/src/common/i18n/locales/pa-IN.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/pcm-NG.json b/src/common/i18n/locales/pcm-NG.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/pcm-NG.json +++ b/src/common/i18n/locales/pcm-NG.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/pl-PL.json b/src/common/i18n/locales/pl-PL.json index cded13dabad..d678fbea5e6 100644 --- a/src/common/i18n/locales/pl-PL.json +++ b/src/common/i18n/locales/pl-PL.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "Zobacz pełny kontekst", "comment-entry-go-parent": "Zobacz bezpośredni nadrzędny", "show-history": "Pokaż Historię", - "hidden-warning": "Ten post został ukryty ze względu na niskie oceny." + "hidden-warning": "Ten post został ukryty ze względu na niskie oceny.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edytuj historię", @@ -753,7 +755,7 @@ "page-title": "FAQ - najczęściej zadawane pytania o Ecency", "page-sub-title": "Spis treści", "what-is-ecency-header": "Czym jest Ecency?", - "what-is-ecency-body": "Ecency jest siecią społecznościową opartą na blockchainie Hive.
Ecency oferuje pozbawioną cenzury, bezpłatną i nieograniczoną platformę do nagradzania twórców treści.
Inicjatorem i założycielem projektu jest @good-karma, a projekt wystartował w sierpniu 2016 roku jako alternatywna sieć społecznościowa. Od tego czasu dołączyło do niego szersze grono uczestników (tłumaczy, testerów, deweloperów, influencerów, twórców treści i konsumentów), którzy pomogli ukształtować Ecency.
Ecency pomaga w upowszechnianiu technologii blockchain wśród masowych odbiorców dzięki platformie umożliwiającej wynagradzanie użytkowników za ich czas i zasoby. Użytkownicy uczą się i jednocześnie korzystają ze społecznościowych aspektów blockchaina. Dzięki łatwości użytkowania platformy użytkownicy nie tylko uczą się nowych rzeczy, lecz również stają się inwestorami i innowatorami w obszarze technologii oraz tworzą społeczność.
", + "what-is-ecency-body": "Ecency jest siecią społecznościową opartą na blockchainie by Hive.
Ecency oferuje pozbawioną cenzury, bezpłatną i nieograniczoną platformę do nagradzania twórców treści.
Inicjatorem i założycielem projektu jest @good-karma, a projekt wystartował w sierpniu 2016 roku jako alternatywna sieć społecznościowa. Od tego czasu dołączyło do niego szersze grono uczestników (tłumaczy, testerów, deweloperów, influencerów, twórców treści i konsumentów), którzy pomogli ukształtować Ecency.
Ecency pomaga w upowszechnianiu technologii blockchain wśród masowych odbiorców dzięki platformie umożliwiającej wynagradzanie użytkowników za ich czas i zasoby. Użytkownicy uczą się i jednocześnie korzystają ze społecznościowych aspektów blockchaina. Dzięki łatwości użytkowania platformy użytkownicy nie tylko uczą się nowych rzeczy, lecz również stają się inwestorami i innowatorami w obszarze technologii oraz tworzą społeczność.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "Na czym polega różnica między Ecency a innymi interfejsami Hive'a?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency przechowuje i odczytuje dane z blockchaina i dlatego są one dostępne i pozbawione cenzury. Ecency nagradza twórców treści dzięki wbudowanemu mechanizmowi motywacyjnemu opartemu na blockchainie z tokenami (HIVE, HIVE DOLLARS, HIVE POWER) oraz Punktami. Tokeny można kupować i sprzedawać na głównych giełdach kryptowalut (np. Binance czy Bittrex). Z Punktów można korzystać na platformie i wymieniać ja na dobra czy usługi.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Wejdź na stronę https://ecency.com/?referral=ecency i utwórz konto. Po zarejestrowaniu się otrzymasz e-mail z dalszymi instrukcjami. Twoje hasło to Twój klucz główny do konta. Przechowuj je bezpiecznie – jeśli stracisz hasło, stracisz również dostęp do konta i środków. Konta nie można dezaktywować ani usunąć ani nie ma możliwości zmiany jego nazwy. Konto wraz z wszelką aktywnością jest przechowywane na stałe w blockchainie. Bez hasła nie ma możliwości przywrócenia konta, więc przechowuj klucze bezpiecznie.
", + "how-to-join-body": "Wejdź na stronę https://ecency.com/signup?referral=ecency i utwórz konto. Po zarejestrowaniu się otrzymasz e-mail z dalszymi instrukcjami. Twoje hasło to Twój klucz główny do konta. Przechowuj je bezpieczenie - jeśli stracisz hasło, stracisz również dostęp do konta i środków. Konta nie można dezaktywować ani usunąć ani nie ma możliwości zmiany jego nazwy. Konto wraz z wszelką aktywnością jest przechowywane na stałe w blockchainie. Bez hasła nie ma możliwości przywrócenia konta, więc przechowuj klucze bezpiecznie.
", "how-to-signin-header": "Jak zalogować się do Ecency?", - "how-to-signin-body": "Możesz zalogować się do Ecency za pomocą nazwy użytkownika i hasła głównego lub za pomocą aktywnych kluczy prywatnych. Podchodzimy bardzo poważnie do kwestii bezpieczeństwa i dlatego nigdy nie przechowujemy Twoich kluczy prywatnych – w aplikacji mobilnej są one zaszyfrowane za pomocą dodatkowego kodu PIN, który samodzielnie wybierasz, i nigdy nie są przechowywane na stronie. Możesz również skorzystać z uwierzytelnienia za pomocą usługi Hivesigner OAuth2, by łatwo się zalogować, zarządzać kontem i wykonywać działania.
", + "how-to-signin-body": "Możesz zalogować się do Ecency za pomocą nazwy użytkownika i hasła głównego lub za pomocą aktywnych kluczy prywatnych. Podchodzimy bardzo poważnie do kwestii bezpieczeństwa i dlatego nigdy nie przechowujemy Twoich kluczy prywatnych – w aplikacji mobilnej są one zaszyfrowane za pomocą dodatkowego kodu PIN, który samodzielnie wybierasz, i nigdy nie są przechowywane na stronie. Możesz również skorzystać z uwierzytelnienia za pomocą usługi Hivesigner OAuth2, by łatwo się zalogować, zarządzać kontem i wykonywać działania.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "Czym są Punkty Ecency i jak z nich korzystać?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "Wszystkie treści na naszej stronie są tworzone przez użytkowników – nie modyfikujemy ich ani nie jesteśmy w stanie dodawać linków zwrotnych. Możesz skontaktować się z autorem wpisu lub zarejestrować się, by utworzyć własny blog i społeczność oraz publikować artykuły do bezpłatnego tworzenia linków zwrotnych.
", + "can-link-post-body": "Wszystkie treści na naszej stronie są tworzone przez użytkowników – nie modyfikujemy ich ani nie jesteśmy w stanie dodawać linków zwrotnych. Możesz skontaktować się z autorem wpisu lub zarejestrować się, by utworzyć własny blog i społeczność oraz publikować artykuły do bezpłatnego tworzenia linków zwrotnych.
", "can-guest-post-header": "Czy możliwe jest dodawanie wpisów na stronie jako gość?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Publikowanie wpisów na Ecency jest proste i łatwe – wystarczy zarejestrować się, by prowadzić blog, stworzyć społeczność i zamieszczać wpisy z własną treścią.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Dostępna jest nowa wersja", + "download": "Download", "update": "Aktualizuj", "dismiss": "Dismiss", "downloading": "Pobieranie nowej wersji...", diff --git a/src/common/i18n/locales/pt-PT.json b/src/common/i18n/locales/pt-PT.json index e3e78c6a6e8..d2efadc7732 100644 --- a/src/common/i18n/locales/pt-PT.json +++ b/src/common/i18n/locales/pt-PT.json @@ -1,6 +1,6 @@ { "g": { - "add": "Add", + "add": "Incluir", "edit": "Editar", "search": "Procurar", "downloads": "Transferências", @@ -25,9 +25,9 @@ "show": "Mostrar", "on": "Ligar", "off": "Desligar", - "yes": "Yes", - "no": "No", - "done": "Done" + "yes": "Sim", + "no": "Não", + "done": "Feito" }, "confirm": { "title": "Tem a certeza?", @@ -42,8 +42,8 @@ "filter-payout": "Pagamentos", "filter-muted": "Silenciado", "filter-feed": "Conteúdo de notícias", - "filter-feed-friends": "Friends", - "filter-feed-subscriptions": "Communities" + "filter-feed-friends": "Amigos", + "filter-feed-subscriptions": "Comunidades" }, "navbar": { "discover": "Descubra", @@ -61,7 +61,7 @@ "header-community": "Comunidades" }, "switch-lang": { - "contributors": "Contributors" + "contributors": "Colaboradoes" }, "user-nav": { "wallet": "Carteira", @@ -73,14 +73,14 @@ "gallery": "Galeria", "drafts": "Rascunhos", "bookmarks": "Favoritos", - "schedules": "Schedules", + "schedules": "Agendamentos", "logout": "Sair", - "vote-power": "Vote Power:" + "vote-power": "Força do Voto:" }, "intro": { - "title": "Aspire to greatness", - "sub-title": "rewarding communities", - "c2a": "Get Started" + "title": "Pense Grande", + "sub-title": "recompensando comunidades", + "c2a": "Começar" }, "login": { "title": "Bem vindo de Volta!", @@ -119,7 +119,7 @@ "title": "Destaque" }, "entry-list-item": { - "reblogged": "{{n}} reblogged", + "reblogged": "{{n}} reblogou", "promoted": "promovidos", "pinned": "Postagem Fixada", "replies": "1 resposta. Clica para responder.", @@ -154,13 +154,13 @@ "description": "{{f}} tópicos de uma rede social que é propriedade e é operada por seus usuários.", "description-tag": "{{f}} #{{t}} tópicos", "description-user-feed": "{{u}}' notícias", - "faq": "FAQ", - "tos": "Terms of service", - "pp": "Privacy Policy" + "faq": "Perguntas frequentes", + "tos": "Termos de serviço", + "pp": "Política de privacidade" }, "market-data": { "title": "Preço mercado", - "credits": "data by Coingecko" + "credits": "dados por Coingecko" }, "list-style": { "title": "Alternar estilo da lista" @@ -169,11 +169,11 @@ "title": "1 Voto", "title-n": "{{n}} Votos", "title-empty": "Sem Votos", - "sort": "Sort", - "sort-reward": "Reward", - "sort-timestamp": "Time", - "sort-reputation": "Reputation", - "sort-percent": "Percentage" + "sort": "Ordenar", + "sort-reward": "Recompensa", + "sort-timestamp": "Tempo", + "sort-reputation": "Reputação", + "sort-percent": "Percentagem" }, "entry": { "via-app": "via {{app}}", @@ -181,7 +181,9 @@ "comment-entry-go-root": "Ver o contexto completo", "comment-entry-go-parent": "Ver o comentário relacionado", "show-history": "Mostrar histórico de edição", - "hidden-warning": "Esta publicação foi ocultada devido a baixas classificações." + "hidden-warning": "Esta publicação foi ocultada devido a baixas classificações.", + "address-copy": "Copiar endereço do post", + "address-copied": "Endereço do post copiado." }, "edit-history": { "title": "Editar Histórico", @@ -360,22 +362,22 @@ "hive-dollars-description": "OS tokens valem aproximadamene $1.00 de HIVE.", "savings": "Poupanças", "savings-description": "O saldo está sujeito a 3 dias de espera para retirá-lo.", - "next-power-down": "The next power down is {{time}}, {{amount}}", + "next-power-down": "O próximo Power Down será em {{time}} {{amount}}", "transfer": "Transferir", "transfer-to-savings": "Transferir para as poupanças", "convert": "Converter", "power-up": "Power up", "withdraw-hive": "Retirar Hive", "withdraw-hbd": "Retirar Hive Dollar", - "delegate": "Delegate", - "power-down": "Power down", - "withdraw-routes": "Withdraw Routes" + "delegate": "Delegar", + "power-down": "Baixar poder", + "withdraw-routes": "Rotas de Saque" }, "withdraw-routes": { - "title": "Withdraw accounts", - "account": "Account", - "percent": "Percent", - "auto-power-up": "Automatically power up" + "title": "Contas de saque", + "account": "Conta", + "percent": "Percentagem", + "auto-power-up": "Aumentar poder automaticamente" }, "points": { "get": "COMPRAR PONTOS", @@ -445,10 +447,10 @@ "convert-title": "Converter", "power-up-sub-title": "Tokens de influência dão-lhe mais controlo sobre os pagamentos das publicações e permitem você ganhar prêmios de curadoria.", "convert-sub-title": "Só é recomendado quando HBD é mais baixo que $1. Você receberá $1 em HIVE em 3.5 dias.", - "delegate-title": "Delegate", - "delegate-sub-title": "Delegate Hive Power", - "power-down-title": "Power Down", - "power-down-sub-title": "Power Down Hive Power", + "delegate-title": "Delegar", + "delegate-sub-title": "Delegar Hive Power", + "power-down-title": "Diminuir Poder", + "power-down-sub-title": "Converter Hive Power em Hive", "from": "De", "to": "Para", "to-placeholder": "utilizador", @@ -459,25 +461,25 @@ "wrong-amount": "Valor errado", "amount-precision-error": "Usar apenas 3 dígitos de precisão", "balance": "Balanço", - "power-down-estimated": "+ {{n}} Estimated Weekly", + "power-down-estimated": "+ {{n}} Estimado Semanalmente", "memo": "Memo", "memo-placeholder": "insira aqui as suas notas", "memo-help": "Este memo é público", - "available-hp-hint": "* available hive power", + "available-hp-hint": "* poder de hive disponível", "confirm-title": "Confirme a sua transação", "confirm-sub-title": "Por favor, verfique se está tudo correto", "confirm": "Confirmar", "recent-transfers": "Transferências recentes", - "transfer-summary": "{{amount}} transferred from {{from}} to {{to}}", - "transfer-saving-summary": "{{amount}} transferred from {{from}} to {{to}}", - "withdraw-saving-summary": "{{amount}} transferred from {{from}} to {{to}}", - "convert-summary": "{{amount}} converted", - "power-up-summary": "{{amount}} staked from {{from}} to {{to}}", - "delegate-summary": "{{amount}} delegated from {{from}} to {{to}}", - "power-down-summary": "Power down completed as {{amount}}", - "reset": "Reset", - "powering-down": "You are currently powering down.", - "stop-power-down": "Stop" + "transfer-summary": "{{amount}} transferida de {{from}} para {{to}}", + "transfer-saving-summary": "{{amount}} transferida de {{from}} para {{to}}", + "withdraw-saving-summary": "{{amount}} transferida de {{from}} para {{to}}", + "convert-summary": "{{amount}} convertido", + "power-up-summary": "{{amount}} delegado de {{from}} para {{to}}", + "delegate-summary": "{{amount}} delegado de {{from}} para {{to}}", + "power-down-summary": "Diminuição de poder hive concluído como {{amount}}", + "reset": "Reiniciar", + "powering-down": "Você está atualmente fazendo power down.", + "stop-power-down": "Parar" }, "trx-common": { "insufficient-funds": "Saldo insuficiente", @@ -505,7 +507,7 @@ }, "delegated-vesting": { "title": "Hive Power Delegado", - "undelegate": "undelegate" + "undelegate": "cancelar delegação" }, "received-vesting": { "title": "Hive Power Recebido" @@ -558,7 +560,7 @@ "title-placeholder": "Título", "body-placeholder": "Conteúdo da Publicação", "reward": "Recompensa", - "reward-hint": "Set author reward ratio for liquid and staked tokens", + "reward-hint": "Configura a taxa de recompensa do autor para tokens líquidos e ilíqüidos.", "reward-default": "Padrão 50% / 50%", "reward-sp": "Força Total 100%", "reward-dp": "Recusar Pagamento", @@ -573,25 +575,25 @@ "clear": "Limpar", "published": "Publicação publicada", "updated": "Publicação atualizada", - "advanced": "Advanced", - "beneficiaries": "Beneficiaries", - "beneficiaries-hint": "Set beneficiaries to share author reward with other accounts", - "reblog": "Reblog", - "reblog-hint": "Auto share content to your blog", - "schedule": "Schedule", - "schedule-hint": "Auto publish content on specific time", - "scheduled": "Post scheduled" + "advanced": "Avançado", + "beneficiaries": "Beneficiários", + "beneficiaries-hint": "Configura beneficiários para dividir a recompensa do autor com outras contas", + "reblog": "Repostar", + "reblog-hint": "Compartilhar conteúdo automaticamente no seu blog", + "schedule": "Agendar", + "schedule-hint": "Publicação automática de conteúdo em um horário específico", + "scheduled": "Post agendado" }, "tag-selector": { "placeholder-empty": "Etiquetas. A primeira etiqueta é a categoria principal. Ordenável.", "placeholder-focus": "Inserir etiqueta", "placeholder-has-tags": "Adicionar mais", - "suggestion-header": "Tags", + "suggestion-header": "Etiquetas", "error-max": "Máximo de etiquetas {{n}}" }, "community-selector": { - "my-blog": "My Blog", - "search-placeholder": "Search Communities" + "my-blog": "Meu Blog", + "search-placeholder": "Pesquisar comunidades" }, "word-count": { "label": "{{n}} palavras", @@ -599,17 +601,17 @@ "read-time-n-min": "~ {{n}} min de leitura" }, "beneficiary-editor": { - "title": "Beneficiaries", - "btn-label": "Set Beneficiaries", - "btn-label-n": "Set Beneficiaries ({{n}})", - "username": "Username", - "reward": "Reward", - "user-error": "{{n}} is not a valid user.", - "user-exists-error": "{{n}} is already in the list" + "title": "Beneficiários", + "btn-label": "Definir Beneficiários", + "btn-label-n": "Definir beneficiários ({{n}})", + "username": "Usuário", + "reward": "Recompensa", + "user-error": "{{n}} não é um usuário válido.", + "user-exists-error": "{{n}} já está na lista" }, "post-scheduler": { - "title": "Schedule", - "btn-label": "Schedule" + "title": "Agendar", + "btn-label": "Agendar" }, "notification": { "popup-title": "Você tem uma nova notificação", @@ -695,7 +697,7 @@ "proxy-active-description": "Você definiu um proxy de votação. Se você deseja reativar as votações manuais, por favor, limpe seu proxy.", "proxy-active-current": "O teu proxy atual é", "proxy-active-btn-label": "Limpar o Proxy", - "proxy-votes-for": "@{{username}} votes for" + "proxy-votes-for": "@{{username}} votos para" }, "proposals": { "page-title": "Propostas", @@ -725,8 +727,8 @@ "title": "Rascunhos" }, "schedules": { - "title": "Scheduled Posts", - "move": "Move to drafts" + "title": "Posts agendados", + "move": "Mover para Rascunhos" }, "bookmarks": { "title": "Marcadores" @@ -753,33 +755,33 @@ "page-title": "Ecency FAQ", "page-sub-title": "Tabela de conteúdos", "what-is-ecency-header": "O que é Ecency?", - "what-is-ecency-body": "A Ecency é uma blockchain baseada em rede social - alimentada pela Hive.
A Ecência oferece uma plataforma sem censura, gratuita, sem limites, que recompensa os criadores de conteúdo.
O Projeto foi iniciado e fundado por @good-karma em Agosto de 2016 como uma rede social alternativa. Desde então, o projeto cresceu para um grupo muito maior de colaboradores (tradutores, testadores, desenvolvedores, influenciadores, criadores de conteúdo e consumidores) que ajudaram a moldar a Ecency.
Ecency ajuda a integrar massas em tecnologia Blockchain onde os utilizadores estão são pagos pelo seu tempo, recursos e aprenda enquanto desfruta dos aspectos sociais da blockchain. Através da facilidade de uso, os utilizadores não só aprendem, mas também se tornam investidores, inovadores da tecnologia e da comunidade.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "O que é a Hive blockchain?", "what-is-hive-body": "Hive é uma blockchain projetada para ser rápida, tranquila, descentralizada e não censurada para a Web3.0 aplicações, com recursos internos onde pessoas interessdas podem ganhar recompensas participando, curando, jogando, negociando - tudo sem qualquer intermediário (descentralizado). Tokens na blockchain da Hive chamado HIVE, HIVE DOLARS, HIVE POWER.
", "what-is-difference-header": "Qual é a diferença entre a Ecency e outras interfaces da Hive?", - "what-is-difference-body": "The primary differences in all interfaces or applications are in their feature-set, use cases. Ecency offers website, mobile and desktop applications for ease of access and with best security in mind. Accessible, opensource and innovative, built and owned by users. Aspire for greatness!
", + "what-is-difference-body": "As maiores diferenças entre interfaces e aplicativos disponíveis estão na sua usabilidade. A Ecency, além de oferecer um site, também possui aplicativos para celular e computadores para facilitar o acesso com a maior segurança possível. Acessibilidade, código aberto e inovação, construída e pertencida pelos usuários. Pense grande!
", "why-choose-ecency-header": "Por que eu escolheria a Ecency?", - "why-choose-ecency-body": "Tailored feature set to empower you to create, inspire your audience and community. Ecency mobile application giving you on-go solution. With desktop app you are always sure to get uncensored content right from the blockchain, with website reach thousands of readers accross globe with best ranked content on search engines. State of art security measures so your keys will always stay encrypted and out of reach for ill-intentioned individuals. Fast and beautiful website, helps you to get discovered online and gain exposure for your content and gain loyal followers and readers. Build your community with Ecency today and take advantages of emerging blockchain technology and uncensored content, true free speech!
", + "why-choose-ecency-body": "Recursos sob medida, criados para facilitar você a criar e inspirar sua audiência e comunidade. O aplicativo móvel dando a você a solução em movimento. No aplicativo para computador, encontre sempre conteúdos incensensuráveis diretamente da blockchain, alcançando à milhares de leitores ao redor do mundo com o melhor conteúdo nos buscadores da internet. Segurança com tecnologia de ponta, mantendo suas chaves privadas sempre encriptadas e fora do alcance de pessoas mal-intencionadas. Um site lindo e veloz ajuda você a ser descoberto na internet e ganhar exposição pelo seu conteúdo, obtendo leais seguidores e leitores. Construa sua comunidade com a Ecency hoje mesmo e obtenha todas as vantagens da emergente tecnologia blockchain, associada a conteúdos incensuráveis e de verdadeira liberdade de expressão!
", "how-ecency-works-header": "Como é que o Ecency funciona?", - "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", + "how-ecency-works-body": "A Ecency lê e mantém as informações da blockchain, mantendo a acessibilidade dos dados de forma incensurável. A Ecency recompensa criadores de conteúdo com de um mecanismo de incentivo pertencente à blockchain, através dos Tokens (HIVE, DÓLARES HIVE, HIVE POWER), e também através de Pontuações. Os Tokens podem ser comprados e vendidos nas maiores corretoras de criptomoedas do mundo (como Binance e Bittrex, por exemplo). Já os Pontos podem ser utilizados dentro da plataforma ou trocados por coisas ou serviços.
", "how-to-join-header": "Como se juntar à Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "Como entrar na Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "Como funciona o sistema de referência da Ecency?", - "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", + "how-referrals-work-body": "O sistema de indicações é simples, você pode convidar os seus amigos ao adicionar seu nome de utilizador neste link https://ecency.com/signup?referral=username e compartilhá-lo com seus amigos. Quando seus amigos se juntarem à Ecency e ganharem os primeiros 250 pontos, você ganhará 100 pontos. Não há limites para indicações e sua recompensa.
", "what-is-points-header": "O que são Pontos de Ecency e como usá-los?", "what-is-points-body": "Os Pontos da Ecency são impressos e recompensados continuamente para todos os utilizadores em várias atividades sociais que realizam no site, no telemóvel ou no computador. Pontos podem ser usados para promover, impulsionar seu conteúdo, até mesmo podem ser transferidos ou presenteados para outro utilizador. Você também pode comprar pontos nos nossos aplicativos móveis.
", "where-tokens-come-header": "De onde vêm esses tokens?", - "where-tokens-come-body": "The Hive network continually creates new digital tokens to reward content creators and curators. Some of the newly-created tokens are transferred to users who add value to platform by posting, commenting, and voting on other people's posts. The remainder is distributed to holders of HIVE POWER and the witnesses that secures the blockchain.
", + "where-tokens-come-body": "A rede da Hive cria constantemente novos tokens digitais para recompensar criadores e curadores de conteúdo. Alguns dos novos tokens criados são transferidos aos usuários que adicionam valor à plataforma, seja postando, comentando ou votando nos posts das pessoas. O restante é distribuído àqueles que mantém HIVE POWER e às testemunhas, que protegem a blockchain.
", "how-promotion-work-header": "Como a promoção de conteúdo funciona?", - "how-promotion-work-body": "Promoting content on Ecency is very simple and easy. Ecency Points are used to promote content for 1, 2, 3, 7 or 14 days to get more exposure. Promoted posts are shuffled across the feeds to all users in mobile app, desktop app and website. There is no limit or restrictions, any post can be promoted to get more exposure and engagement. We hold right to remove posts from promotion list if it violates certain internet etiquette.
", + "how-promotion-work-body": "Promover conteúdo na Ecency é muito simples e fácil. Os Pontos na Ecency são usados para promover o conteúdo por 1, 2, 3, 7 ou 14 dias para ganhar mais exposição. Posts promovidos aparecem de forma aleatória através do feed para todos os usuários do aplicativo móvel, computador e site. Não há limite ou restrições. Qualquer post pode ser promovido para conseguir mais exposição e engajamento. Nós nos damos o direito de remover posts da lista de impulsionamentos caso ele viole certas etiquetas da internet.
", "how-boosting-work-header": "Como a promoção de conteúdo funciona?", "how-boosting-work-body": "Os pontos podem ser usados para otimizar conteúdo (postagem e comentários). Os pedidos de otimização são revistos manualmente pelos nossos moderadores e curadores, que podem demorar até 24 horas.
Como parte da verificação de qualidades, podemos considerar: a) Conteúdo é o conteúdo original, b) Não detectado por cheetah, mackbot, hivewatchers, ou quaisquer outras listas negras, etc. c) O utilizador não está na lista negra de identificações por comportamento abusivo.
A otimização não garante curadoria, se o conteúdo não for curado dentro de 24 horas Pontos serão reembolsados.", "how-to-transfer-header": "Como transferir tokens na blockchain?", "how-to-transfer-body": "Após o login, você encontrará a página Wallet no cabeçalho superior no site e no aplicativo no computador ou na página de perfil, barra de navegação inferior no aplicativo móvel. Na página de carteira, você pode iniciar a transferência de qualquer token que possuir para outro utilizador ou para trocar contas, clique na seta ao lado do seu saldo e encontre operações de transferência. Transferências são irreversíveis porque elas estão registradas no blockchain, certifique-se de enviar o destinatário correto.
", "how-see-rewards-header": "Como vejo minhas recompensas de postagem?", - "how-see-rewards-body": "In Wallet page (in top header on website and desktop app, bottom navigation bar on mobile app), you can see Curation rewards (the rewards earned for upvoting posts and comments) and Author rewards (the rewards earned by your own posts and comments)
You can also view the same information for other users by visiting their wallet profile.
", + "how-see-rewards-body": "A página da carteira (na parte de cima do site e aplicativo para computador, parte de baixo da barra de navegação no aplicativo para smartphones), permite ver suas recompensas de Curadoria (as recompensas ganhas por curtir posts e comentários) e recompensas de Autor (as recompensas ganhas pelos seus próprios posts e comentários)
Você também pode ver a mesma informação de outros usuários visitando a página da carteira deles.
", "how-dhf-work-header": "Como o DHF funciona?", "how-dhf-work-body": "Qualquer um pode criar uma proposta e convencer a comunidade a votar sobre sua proposta de ser financiada. Antes de criar uma proposta, a postagem normal deve ser publicada na blockchain e é recomendável coletar comentários antes de criar uma proposta. A criação de propostas tem uma taxa de 10 HBD + 1 HBD para cada dia dura mais de 60 dias.
Uma vez que a proposta atingir um determinado limite de votos convencionados, ela começará a receber fundos a cada hora. Se a proposta cair abaixo do limite, o sistema travará o financiamento dessa proposta. Você pode votar quantas propostas quiser, não há limites. Propostas não pode ser editada, mas pode ser excluída/retirada pelo criador.
", "when-claim-rewards-header": "Quando posso reivindicar minhas recompensas?", @@ -789,18 +791,18 @@ "how-boost-account-header": "Como solicitar o aumento de conta?", "how-boost-account-body": "Se sua conta está com pouco valor de Créditos de Recursos, você pode solicitar o aumento de conta de Ecency. Você receberá delegação temporária que deve impulsionar sua conta para executar mais atividades na blockchain. Você pode encontrar conta com otimização de recursos nas opções de Pontos
", "what-spam-abuse-header": "O que é considerado spam ou abuso?", - "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "É possível visitar a postagem em seu site?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", - "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "how-to-contribute-header": "Como contribuir para a Ecency?", + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { - "title": "Contributors", - "description": "These great people contributed in one way or another to Ecency, we would like to thank them all. If you want to join our team by contributing with Translation, Ideas, Development, Designing, Social awareness, feel free to join. To learn more read our FAQ." + "title": "Colaboradoes", + "description": "Estas grandes pessoas contribuíram de uma forma ou de outra para a Ecency, gostaríamos de agradecer a todos. Se você quiser se juntar a nossa equipe contribuindo com Tradução, Idéias, Desenvolvimento, Design, Conscientização social, sinta-se livre para participar. Para saber mais, leia as nossas Perguntas Frequentes." }, "context-menu": { "cut": "Cortar", @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Nova versão disponível", + "download": "Baixar", "update": "Atualizar", "dismiss": "Descartar", "downloading": "Transferindo nova versão...", diff --git a/src/common/i18n/locales/ro-RO.json b/src/common/i18n/locales/ro-RO.json index d4d12a2c954..69355980dcb 100644 --- a/src/common/i18n/locales/ro-RO.json +++ b/src/common/i18n/locales/ro-RO.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "Vezi contextul complet", "comment-entry-go-parent": "Vizualizează postarea principală", "show-history": "Arată istoria modificărilor", - "hidden-warning": "Această postare a fost ascunsă din cauza ratingului scăzut." + "hidden-warning": "Această postare a fost ascunsă din cauza ratingului scăzut.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Istoric modificări", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Tabla de materii", "what-is-ecency-header": "Ce este Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "O nouă versiune este disponibilă", + "download": "Download", "update": "Actualizare", "dismiss": "Renunță", "downloading": "Descă noua versiune...", diff --git a/src/common/i18n/locales/ru-RU.json b/src/common/i18n/locales/ru-RU.json index 5e14b39890f..4c1de61e9f4 100644 --- a/src/common/i18n/locales/ru-RU.json +++ b/src/common/i18n/locales/ru-RU.json @@ -27,7 +27,7 @@ "off": "Выкл", "yes": "Да", "no": "Нет", - "done": "Done" + "done": "Готово" }, "confirm": { "title": "Вы уверены?", @@ -73,9 +73,9 @@ "gallery": "Галерея", "drafts": "Черновики", "bookmarks": "Закладки", - "schedules": "Schedules", + "schedules": "Отложенные", "logout": "Выйти", - "vote-power": "Vote Power:" + "vote-power": "Сила голоса:" }, "intro": { "title": "Стремитесь к величию", @@ -181,7 +181,9 @@ "comment-entry-go-root": "Полный контекст", "comment-entry-go-parent": "Просмотр прямого родителя", "show-history": "История", - "hidden-warning": "Скрыто из-за низкого рейтинга." + "hidden-warning": "Скрыто из-за низкого рейтинга.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Править Историю", @@ -434,126 +436,126 @@ "success-message": "Ваш запрос отправлен. Он будет выполнен через пару минут." }, "transfer": { - "transfer-title": "Transfer to Account", - "transfer-title-point": "Gift to Account", - "transfer-sub-title": "Move funds to another Hive account", - "transfer-saving-title": "Transfer to Savings", - "transfer-saving-sub-title": "Protect funds by requiring a 3 day withdraw waiting period", - "withdraw-saving-title": "Savings Withdraw", - "withdraw-saving-sub-title": "Withdraw funds after the required 3 day waiting period", - "power-up-title": "Stake Hive as Power", - "convert-title": "Convert", + "transfer-title": "Перевести на счет", + "transfer-title-point": "Подарить аккаунту", + "transfer-sub-title": "Перевести средства на другой Hive аккаунт", + "transfer-saving-title": "Перевод в сейф", + "transfer-saving-sub-title": "Защитите средства от вывода 3-х дневным периодом ожидания", + "withdraw-saving-title": "Вывод из сейфа", + "withdraw-saving-sub-title": "Снять средства после необходимого 3-дневного периода ожидания", + "power-up-title": "Перевести Hive в Hive Силу", + "convert-title": "Конвертировать", "power-up-sub-title": "Influence tokens which give you more control over post payouts and allow you to earn on curation rewards.", - "convert-sub-title": "Only recommended when HBD is below $1. You will get $1 of HIVE in 3.5 days.", - "delegate-title": "Delegate", - "delegate-sub-title": "Delegate Hive Power", + "convert-sub-title": "Рекомендуется только при цене HBD ниже $1. Вы получите $1 в токенах HIVE через 3,5 дня.", + "delegate-title": "Делегировать", + "delegate-sub-title": "Делегировать Hive Силу", "power-down-title": "Power Down", "power-down-sub-title": "Power Down Hive Power", "from": "От", "to": "Кому", - "to-placeholder": "username", - "to-not-found": "The user that you are trying to transfer funds to does not exist!", - "to-bad-actor": "Use caution sending to this account. Please double check your spelling for possible phishing.", + "to-placeholder": "имя пользователя", + "to-not-found": "Пользователь, которому Вы пытаетесь перевести средства, не существует!", + "to-bad-actor": "Будьте осторожны при отправке на этот аккаунт. Пожалуйста, проверьте правильность написания, чтобы избежать фишинга.", "amount": "Сумма", "amount-placeholder": "сумма", - "wrong-amount": "Wrong amount value", - "amount-precision-error": "Use only 3 digits of precision", - "balance": "Balance", - "power-down-estimated": "+ {{n}} Estimated Weekly", - "memo": "Memo", - "memo-placeholder": "enter your notes here", - "memo-help": "This memo is public", - "available-hp-hint": "* available hive power", - "confirm-title": "Confirm your transaction", - "confirm-sub-title": "Please, check if everything is correct", - "confirm": "Confirm", - "recent-transfers": "Recent transfers", - "transfer-summary": "{{amount}} transferred from {{from}} to {{to}}", - "transfer-saving-summary": "{{amount}} transferred from {{from}} to {{to}}", - "withdraw-saving-summary": "{{amount}} transferred from {{from}} to {{to}}", - "convert-summary": "{{amount}} converted", - "power-up-summary": "{{amount}} staked from {{from}} to {{to}}", - "delegate-summary": "{{amount}} delegated from {{from}} to {{to}}", - "power-down-summary": "Power down completed as {{amount}}", - "reset": "Reset", - "powering-down": "You are currently powering down.", - "stop-power-down": "Stop" + "wrong-amount": "Неверное значение количества", + "amount-precision-error": "Используйте только 3 цифры после запятой", + "balance": "Баланс", + "power-down-estimated": "Предположительно + {{n}} в неделю", + "memo": "Примечание", + "memo-placeholder": "введите сюда свои заметки", + "memo-help": "Эта заметка видна всем", + "available-hp-hint": "* доступная Hive Сила", + "confirm-title": "Подтвердите транзакцию", + "confirm-sub-title": "Пожалуйста, убедитесь что всё верно", + "confirm": "Подтвердить", + "recent-transfers": "Недавние переводы", + "transfer-summary": "Перевод {{amount}} от {{from}} для {{to}}", + "transfer-saving-summary": "Перевод {{amount}} от {{from}} для {{to}}", + "withdraw-saving-summary": "Перевод {{amount}} от {{from}} для {{to}}", + "convert-summary": "Конвертация {{amount}}", + "power-up-summary": "{{amount}} зачислено в Силу от {{from}} для {{to}}", + "delegate-summary": "{{amount}} делегировано пользователем {{from}} для {{to}}", + "power-down-summary": "Проведено понижение Силы в размере {{amount}}", + "reset": "Сбросить", + "powering-down": "В настоящее время вы понижаете Силу.", + "stop-power-down": "Остановить" }, "trx-common": { - "insufficient-funds": "Insufficient funds", - "sign-title": "Sign transaction", - "sign-sub-title": "Sign your transaction", - "success-title": "Success", - "success-sub-title": "Transaction successful" + "insufficient-funds": "Недостаточно средств", + "sign-title": "Подписать транзакцию", + "sign-sub-title": "Подпишите свою транзакцию", + "success-title": "Успешно", + "success-sub-title": "Транзакция выполнена успешно" }, "transactions": { "title": "История", - "type-curation_reward": "Curation Reward", - "type-author_reward": "Author Reward", - "type-comment_benefactor_reward": "Comment Benefactor Reward", - "type-claim_reward_balance": "Claim rewards", - "type-transfer": "Transfer", - "type-transfer_to_vesting": "Transfer to vesting", - "type-withdraw_vesting": "Withdraw vesting", + "type-curation_reward": "Кураторское вознаграждение", + "type-author_reward": "Авторское вознаграждение", + "type-comment_benefactor_reward": "Награда бенефициару", + "type-claim_reward_balance": "Зачислить вознаграждения", + "type-transfer": "Перевод", + "type-transfer_to_vesting": "Повышение Силы", + "type-withdraw_vesting": "Понижение Силы", "type-fill_order": "Fill order" }, "key-or-hot": { - "sign": "Sign", - "key-placeholder": "Enter active/owner/master key", - "with-hivesigner": "Sign with hivesigner", - "with-keychain": "Sign with keychain" + "sign": "Подписать", + "key-placeholder": "Введите ключ активный/владельца/главный", + "with-hivesigner": "Подписать с помощью hivesigner", + "with-keychain": "Подписать с помощью keychain" }, "delegated-vesting": { - "title": "Delegated Hive Power", - "undelegate": "undelegate" + "title": "Делегированная Hive Сила", + "undelegate": "отозвать делегирование" }, "received-vesting": { - "title": "Received Hive Power" + "title": "Полученная Hive Сила" }, "friends": { - "followers": "Followers ({{n}})", - "following": "Following ({{n}})", - "search-placeholder": "Search users" + "followers": "Подписчики ({{n}})", + "following": "Подписан на ({{n}})", + "search-placeholder": "Поиск пользователей" }, "follow-controls": { - "follow": "Follow", - "unFollow": "Unfollow", - "mute": "Mute", - "unMute": "Unmute" + "follow": "Подписаться", + "unFollow": "Отписаться", + "mute": "Заглушить", + "unMute": "Разблокировать" }, "favorite-btn": { - "add": "Add to favorites", - "added": "Added to favorites", - "delete": "Remove from favorites", - "deleted": "Removed from favorites" + "add": "Добавить в избранное", + "added": "Добавлено в избранное", + "delete": "Удалить из избранного", + "deleted": "Удалено из избранного" }, "editor-toolbar": { - "bold": "Bold", - "italic": "Italic", - "header": "Heading", - "code": "Code", - "quote": "Quote", - "ul": "Unordered List", - "ol": "Ordered List", - "link": "Link", - "image": "Image", - "table": "Table", - "table-3-col": "3 columns", - "table-2-col": "2 columns", - "table-1-col": "1 column", - "upload": "Upload", - "gallery": "Gallery", - "emoji": "Emoji", - "image-error": "Couldn't upload image.", - "image-error-size": "Image size is too large, try smaller size image again." + "bold": "Жирный", + "italic": "Курсив", + "header": "Заголовок", + "code": "Код", + "quote": "Цитата", + "ul": "Маркированный список", + "ol": "Нумерованный список", + "link": "Ссылка", + "image": "Изображение", + "table": "Таблица", + "table-3-col": "3 колонки", + "table-2-col": "2 колонки", + "table-1-col": "1 колонка", + "upload": "Загрузить", + "gallery": "Галерея", + "emoji": "Эмодзи", + "image-error": "Не удалось загрузить изображение.", + "image-error-size": "Слишком большой размер изображения. Попробуйте уменьшить его." }, "emoji-picker": { - "filter-placeholder": "Filter", - "filter-no-match": "No match", - "recently-used": "Recently Used" + "filter-placeholder": "Фильтр", + "filter-no-match": "Нет совпадений", + "recently-used": "Недавно использованные" }, "submit": { - "page-title": "Create a post", + "page-title": "Создать пост", "page-description": "Publish an article, earn reward, uncensored, immutable, decentralized content!", "title-placeholder": "Title", "body-placeholder": "Post Content", @@ -612,40 +614,40 @@ "btn-label": "Schedule" }, "notification": { - "popup-title": "You have a new notification", - "voted": "{{source}} voted your post", - "mention-post": "{{source}} mentioned you in a post", - "mention-comment": "{{source}} mentioned you in a comment", - "followed": "{{source}} followed you", - "replied": "{{source}} replied you", - "reblogged": "{{source}} reblogged your post", - "transfer": "{{source}} sent you {{amount}}" + "popup-title": "У вас есть новое уведомление", + "voted": "{{source}} проголосовал за ваш пост", + "mention-post": "{{source}} упомянул вас в посте", + "mention-comment": "{{source}} упомянул вас в комментарии", + "followed": "{{source}} подписался на вас", + "replied": "{{source}} ответил вам", + "reblogged": "{{source}} сделал репост вашего поста", + "transfer": "{{source}} отправил вам {{amount}}" }, "notifications": { - "type-all": "All Notifications", - "type-all-short": "All", - "type-rvotes": "Votes", - "type-replies": "Replies", - "type-mentions": "Mentions", - "type-follows": "Follows", - "type-reblogs": "Reblogs", - "type-transfers": "Transfers", + "type-all": "Все уведомления", + "type-all-short": "Все", + "type-rvotes": "Голоса", + "type-replies": "Ответы", + "type-mentions": "Упоминания", + "type-follows": "Подписки", + "type-reblogs": "Репосты", + "type-transfers": "Переводы", "vote-str": "{{p}}% likes your post:", - "reply-str": "replied to your post:", - "mention-str": "mentioned you in:", - "followed-str": "followed", - "unfollowed-str": "unfollowed", - "ignored-str": "ignored", - "reblog-str": "reblogged your post:", - "transfer-str": "sent you", + "reply-str": "ответил на ваш пост:", + "mention-str": "упомянул вас в:", + "followed-str": "подписался на", + "unfollowed-str": "отписался", + "ignored-str": "заглушил", + "reblog-str": "сделал репост вашего поста:", + "transfer-str": "отправил вам", "spin-str": "Time to earn more Points, Play Spin on Ecency Mobile app", "inactive-str": "Be active! Write a post, continue earning", "referral-str": "joined with your referral, welcome them", - "refresh": "Refresh", - "mark-all-read": "Mark All as Read", - "mark-read": "Mark as Read", - "mute": "Turn off notification alerts", - "unmute": "Turn on notification alerts" + "refresh": "Обновить", + "mark-all-read": "Пометить всё как прочитанное", + "mark-read": "Пометить как прочитанное", + "mute": "Отключить уведомления", + "unmute": "Включить уведомления" }, "leaderboard": { "title": "Leaderboard", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/sk-SK.json b/src/common/i18n/locales/sk-SK.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/sk-SK.json +++ b/src/common/i18n/locales/sk-SK.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/sl-SI.json b/src/common/i18n/locales/sl-SI.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/sl-SI.json +++ b/src/common/i18n/locales/sl-SI.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/sr-CS.json b/src/common/i18n/locales/sr-CS.json index dcaf0692040..78443aac6a6 100644 --- a/src/common/i18n/locales/sr-CS.json +++ b/src/common/i18n/locales/sr-CS.json @@ -27,7 +27,7 @@ "off": "Isključeno", "yes": "Da", "no": "Ne", - "done": "Done" + "done": "Gotovo" }, "confirm": { "title": "Da li ste sigurni?", @@ -73,9 +73,9 @@ "gallery": "Galerija", "drafts": "Skice", "bookmarks": "Obeleživači", - "schedules": "Schedules", + "schedules": "Rasporedi", "logout": "Odjavi se", - "vote-power": "Vote Power:" + "vote-power": "Snaga glasa:" }, "intro": { "title": "Težite najboljem", @@ -181,7 +181,9 @@ "comment-entry-go-root": "Pogledaj ceo kontekst", "comment-entry-go-parent": "Pogledaj nadređeni komentar", "show-history": "Prikaži istoriju uređivanja", - "hidden-warning": "Ova objava je sakrivena zbog niske ocene." + "hidden-warning": "Ova objava je sakrivena zbog niske ocene.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Uredi istoriju", @@ -573,12 +575,12 @@ "clear": "Obriši", "published": "Post je objavljen", "updated": "Post je ažuriran", - "advanced": "Advanced", - "beneficiaries": "Beneficiaries", + "advanced": "Napredno", + "beneficiaries": "Primaoci", "beneficiaries-hint": "Set beneficiaries to share author reward with other accounts", - "reblog": "Reblog", + "reblog": "Podeli", "reblog-hint": "Auto share content to your blog", - "schedule": "Schedule", + "schedule": "Raspored", "schedule-hint": "Auto publish content on specific time", "scheduled": "Post scheduled" }, @@ -599,11 +601,11 @@ "read-time-n-min": "~ {{n}} minuta čitanja" }, "beneficiary-editor": { - "title": "Beneficiaries", + "title": "Primaoci", "btn-label": "Set Beneficiaries", "btn-label-n": "Set Beneficiaries ({{n}})", - "username": "Username", - "reward": "Reward", + "username": "Korisničko ime", + "reward": "Nagrada", "user-error": "{{n}} is not a valid user.", "user-exists-error": "{{n}} is already in the list" }, @@ -725,8 +727,8 @@ "title": "Skice" }, "schedules": { - "title": "Scheduled Posts", - "move": "Move to drafts" + "title": "Planirani postovi", + "move": "Premesti u radne verzije" }, "bookmarks": { "title": "Obeleživači" @@ -753,7 +755,7 @@ "page-title": "Ecency često postavljana pitanja", "page-sub-title": "Sadržaj", "what-is-ecency-header": "Šta je Ecency?", - "what-is-ecency-body": "Ecency je blockchain bazirana socijalna mreža - koju pokreće Hive.
Ecency nudi necenzurisanu, besplatnu, neograničenu platformu koja nagrađuje kreatore sadržaja.
Projekat je pokrenut i osnovan od strane @good-karma u Avgustu 2016 kao alternativvna socijalna mreža. Od tada projekat je narastao do mnogo veće grupe saradnika (prevodioca, testera, programera, influensera, kreatora sadržaja i korisnika) koji su pomogli da se oblikuje Ecency.
Ecency pomaže uključivanje masa u blockchain tehnologiju, gde su korisnici plaćeni za svoje vreme, resurse i učenje dok uživaju u društvenim aspektima blockchain-a. Zahvaljujući jednostavnosti upotrebe, korisnici ne samo da uče, već postaju i investitori, inovatori tehnologije i zajednice.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "Šta je Hive blockchain?", "what-is-hive-body": "Hive je blockchain koji je dizajniran da bude brza, besplatna, decentralizovana, necenzurisana platforma za Web3.0 aplkacije, sa ugrađenim funkcijama u kojima akteri mogu zaraditi nagrade ulaganjem, kuracijom, objavljivanjem, igranjem igara, trgovinom - sve to bez posrednika (decentralizovano). Tokeni na Hive blockchain-u zovu se HIVE, HIVE dolari, HIVE snaga.
", "what-is-difference-header": "Koja je razlika između Ecency i ostalih Hive pristupa?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "Kako Ecency radi?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "Kako se pridružiti Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "Kako se prijaviti u Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "Kako funkcioniše sistem preporuke na Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "Šta su Ecency poeni i kako ih koristiti?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "Šta se smatra neželjenom poštom ili zloupotrebom?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Da li je moguće objavljivati kao gost na vašoj veb stranici?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Nova verzija je dostupna", + "download": "Download", "update": "Ažuriraj", "dismiss": "Odbaci", "downloading": "Preuzimanje nove verzije...", diff --git a/src/common/i18n/locales/sv-SE.json b/src/common/i18n/locales/sv-SE.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/sv-SE.json +++ b/src/common/i18n/locales/sv-SE.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/ta-IN.json b/src/common/i18n/locales/ta-IN.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/ta-IN.json +++ b/src/common/i18n/locales/ta-IN.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/th-TH.json b/src/common/i18n/locales/th-TH.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/th-TH.json +++ b/src/common/i18n/locales/th-TH.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/tr-TR.json b/src/common/i18n/locales/tr-TR.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/tr-TR.json +++ b/src/common/i18n/locales/tr-TR.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/uk-UA.json b/src/common/i18n/locales/uk-UA.json index 61ccb59d587..7674c050e57 100644 --- a/src/common/i18n/locales/uk-UA.json +++ b/src/common/i18n/locales/uk-UA.json @@ -27,7 +27,7 @@ "off": "Вимкнути", "yes": "Так", "no": "Ні", - "done": "Done" + "done": "Виконано" }, "confirm": { "title": "Ви впевнені?", @@ -61,7 +61,7 @@ "header-community": "Спільноти" }, "switch-lang": { - "contributors": "Contributors" + "contributors": "Учасники перекладу" }, "user-nav": { "wallet": "Гаманець", @@ -73,13 +73,13 @@ "gallery": "Галерея", "drafts": "Чернетки", "bookmarks": "Закладки", - "schedules": "Schedules", + "schedules": "За розкладом", "logout": "Вийти", - "vote-power": "Vote Power:" + "vote-power": "Сила голосу:" }, "intro": { "title": "Прагніть до величі", - "sub-title": "винагороджуються спільноти", + "sub-title": "спільноти отримують винагороди", "c2a": "Розпочати" }, "login": { @@ -181,7 +181,9 @@ "comment-entry-go-root": "Переглянути повний контекст", "comment-entry-go-parent": "Дивитись батьківський коментар", "show-history": "Показати історію редагування", - "hidden-warning": "Цей допис було приховано через низький рейтинг." + "hidden-warning": "Цей допис було приховано через низький рейтинг.", + "address-copy": "Скопіювати адресу", + "address-copied": "Адреса скопійована в буфер обміну." }, "edit-history": { "title": "Редагувати історію", @@ -225,7 +227,7 @@ }, "community-cover": { "rewards": "винагороди", - "authors": "банери", + "authors": "дописувач(-ів)", "lang": "мова", "cover-image": "Зображення обкладинки спільноти", "cover-image-edit": "Редагувати зображення обкладинки", @@ -261,7 +263,7 @@ "title": "Спільноти", "description": "Найкраща онлайн, децентралізована, незмінна, громада винагороджується", "n-subscribers": "{{n}} учасників", - "n-authors": "{{n}} банерів", + "n-authors": "{{n}} дописувач(-ів)", "n-posts": "{{n}} дописів", "admins": "адміни:", "sort-hot": "Актуальне", @@ -387,7 +389,7 @@ "comment-desc": "Кожен коментар допомагає вам нарощувати аудиторію, зав'язує дружбу та приносить тобі 5 балів.", "checkin-desc": "Періодичний вхід на Ecency дає вам 0,25 балів та допомагає залишатися на зв'язку з друзями.", "vote-desc": "Голосуючи, ви винагороджуєте інших авторів і показуєте свою вдячність, а також отримуєте бали у кількості 0,01 x вагу голосу.", - "reblog-desc": " Діліться з друзями постами, що вам подобаються, та отримуйте 1 бал.", + "reblog-desc": " Діліться з друзями дописами, ті що вам подобаються, та отримуйте 1 бал.", "login-desc": "При першій авторизації в додатку Ecency вам автоматично нараховується 100 балів.", "checkin-extra-desc": "Регулярне використання додатку дає вам шанс отримати ще 10 бонусних балів, будьте активнішим та отримуй більше.", "delegation-desc": "Ви можете заробити ~50 балів на день за кожну делегацію 1000HP.", @@ -558,7 +560,7 @@ "title-placeholder": "Заголовок", "body-placeholder": "Вміст допису", "reward": "Винагорода", - "reward-hint": "Set author reward ratio for liquid and staked tokens", + "reward-hint": "Встановіть коефіцієнт винагороди автора за ліквідністю та закладених токенах", "reward-default": "Стандарт 50% / 50%", "reward-sp": "Power Up 100%", "reward-dp": "Відмовитися від виплати", @@ -573,14 +575,14 @@ "clear": "Очистити", "published": "Допис опубліковано", "updated": "Допис оновлено", - "advanced": "Advanced", - "beneficiaries": "Beneficiaries", - "beneficiaries-hint": "Set beneficiaries to share author reward with other accounts", - "reblog": "Reblog", - "reblog-hint": "Auto share content to your blog", - "schedule": "Schedule", - "schedule-hint": "Auto publish content on specific time", - "scheduled": "Post scheduled" + "advanced": "Розширений", + "beneficiaries": "Бенефіціари (отримувачі)", + "beneficiaries-hint": "Налаштуйте бенефіціарів (отримувачів) аби ділитися винагородою з авторами інших обліковок. Наприклад: співавторський допис, ви можете чесно розділити винагороду з іншим автором", + "reblog": "Редопис", + "reblog-hint": "Автоматично публікувати вміст для вашого блогу", + "schedule": "Запланувати", + "schedule-hint": "Автоматично публікувати вміст в певний час", + "scheduled": "Допис заплановано" }, "tag-selector": { "placeholder-empty": "Теги. Першим тегом є основна категорія, а наступні є для сортування.", @@ -599,17 +601,17 @@ "read-time-n-min": "~ {{n}} хв. читати" }, "beneficiary-editor": { - "title": "Beneficiaries", - "btn-label": "Set Beneficiaries", - "btn-label-n": "Set Beneficiaries ({{n}})", - "username": "Username", - "reward": "Reward", - "user-error": "{{n}} is not a valid user.", - "user-exists-error": "{{n}} is already in the list" + "title": "Бенефіціари (отримувачі)", + "btn-label": "Встановити бенефіціарів (отримувачів)", + "btn-label-n": "Встановити бенефіціарів (отримувачів) ({{n}})", + "username": "Ім'я користувача", + "reward": "Винагорода", + "user-error": "{{n}} не є дійсним користувачем.", + "user-exists-error": "{{n}} вже в списку" }, "post-scheduler": { - "title": "Schedule", - "btn-label": "Schedule" + "title": "Розклад", + "btn-label": "Розклад" }, "notification": { "popup-title": "У вас є нове сповіщення", @@ -695,7 +697,7 @@ "proxy-active-description": "Ви встановили proxy. Якщо ви бажаєте знов увімкнути голосування вручну, будь ласка, зніміть proxy.", "proxy-active-current": "Ваш поточний проксі є", "proxy-active-btn-label": "Зняти проксі", - "proxy-votes-for": "@{{username}} votes for" + "proxy-votes-for": "@{{username}} голосів за" }, "proposals": { "page-title": "Пропозиції", @@ -725,8 +727,8 @@ "title": "Чернетки" }, "schedules": { - "title": "Scheduled Posts", - "move": "Move to drafts" + "title": "Заплановані дописи", + "move": "Перемістити до чернеток" }, "bookmarks": { "title": "Закладки" @@ -753,33 +755,33 @@ "page-title": "Ecency ЧаПи", "page-sub-title": "Зміст", "what-is-ecency-header": "Що таке Ecency?", - "what-is-ecency-body": "Ecency - це соціальна мережа, заснована на блокчейні, що працює від Hive.
Ecency пропонує соціальну мережу без цензури, безкоштовну, безмежну, корисну платформу для творців вмісту.
Проєкт ініціював та заснував @good-karma у серпні 2016 року, як альтернативну соціальну мережу. З того часу проєкт виріс до значно більшої групи учасників (перекладачі, тестувальники, розробники, впливові особистості, творці вмісту та споживачі) які допомогли сформувати Ecency.
Ecency допомагає інтегрувати маси людей у технологію Blockchain, де користувачі отримують гроші за свій час, ресурси та навчання, насолоджуючись соціальними аспектами блокчейну. Завдяки простоті використання користувачі не тільки навчаються, але й стають інвесторами, новаторами технологій та громад.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "Що таке Hive блокчейн?", "what-is-hive-body": "Hive - це блокчейн, розроблений як швидка, безоплатна, децентралізована, нецензурована платформа для додатків Web 3.0 із вбудованими функціями, де зацікавлені сторони можуть заробляти винагороду та стекаючи їх, інвестуючи, публікуючи, граючи в ігри, торгуючи - все без будь-якої середньої людини (децентралізована). Токени на блокчейні Hive під назвою HIVE, HIVE DOLLARS, HIVE POWER(сила).
", "what-is-difference-header": "У чому різниця між Ecency та іншими Hive інтерфейсами?", - "what-is-difference-body": "The primary differences in all interfaces or applications are in their feature-set, use cases. Ecency offers website, mobile and desktop applications for ease of access and with best security in mind. Accessible, opensource and innovative, built and owned by users. Aspire for greatness!
", + "what-is-difference-body": "Основні відмінності у всіх інтерфейсах або додатках полягають у їх наборі функцій та варіантах використання. Ecency пропонує веб-сайт, мобільні та комп'ютерні додатки для зручності доступу, та найкращого рівня безпеки. Доступний у відкритому джерелі, інноваційний, створений і належить користувачам. Прагніть величі!
", "why-choose-ecency-header": "Чому б я обрав Ecency?", - "why-choose-ecency-body": "Tailored feature set to empower you to create, inspire your audience and community. Ecency mobile application giving you on-go solution. With desktop app you are always sure to get uncensored content right from the blockchain, with website reach thousands of readers accross globe with best ranked content on search engines. State of art security measures so your keys will always stay encrypted and out of reach for ill-intentioned individuals. Fast and beautiful website, helps you to get discovered online and gain exposure for your content and gain loyal followers and readers. Build your community with Ecency today and take advantages of emerging blockchain technology and uncensored content, true free speech!
", + "why-choose-ecency-body": "Спеціальний набір функцій, який дає вам можливість створювати, надихати свою аудиторію та спільноту. Мобільний додаток Ecency, дає вам змогу бути завжди у мережі. Застосовуючи комп'ютерний додаток, ви завжди будете отримувати вміст без цензури прямо з блокчейну, а веб-сайт охоплює тисячі читачів по всьому світу з найкращим рейтингом вмісту в пошукових системах. Сучасні заходи безпеки, завдяки яким ваші ключі завжди залишатимуться зашифрованими та недоступними для недоброзичливих людей. Швидкий та гарний веб-сайт, допомагає вам бути відкритим в Інтернеті та отримати доступ до вашого вмісту, отримати вірних послідовників та читачів. Створіть свою спільноту сьогодні разом з Ecency та скористайтеся перевагами технологій блокчейну, що розвиваються без цензурованого вмісту зі справжньою свободою слова!
", "how-ecency-works-header": "Як працює Ecency?", - "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", + "how-ecency-works-body": "Ecency зберігає та зчитує дані з блокчейну, а отже, дані є доступними та без цензури. Ecency винагороджує творців вмісту вбудованим механізмом стимулювання блокчейну, жетонами (HIVE, HIVE ДОЛАР, HIVE СИЛА), а також балами. Токени можна купувати та продавати на основних біржах криптовалют (наприклад, Binance, Bittrex). Бали можна використовувати на платформі та торгувати за товари, послуги.
", "how-to-join-header": "Як приєднатися до Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "Як увійти в Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "Як працює реферальна система на Ecency?", - "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", + "how-referrals-work-body": "Реферальна система проста, ви можете запросити своїх друзів, додавши своє ім'я користувача в це джерело https://ecency.com/signup?referral=username та поділіться ним з друзями. Як тільки ваші друзі приєднаються до Ecency та отримують їхні перші 250 балів, то ви отримаєте 100 балів. Немає обмежень щодо рефералів та їх нагород.
", "what-is-points-header": "Що таке Ecency бали і як їх використовувати?", "what-is-points-body": "Ecency Бали постійно видобувається та винагороджується усіх користувачів за різні соціальні види діяльності, які вони виконують на веб-сайті, мобільному або комп'ютерному додатку. Бали можна використовувати для підсилення вмісту, або можна навіть передати чи подарувати іншому користувачеві. Ви також можете придбати бали за допомогою наших мобільних додатків.
", "where-tokens-come-header": "Звідки беруться ці токени?", - "where-tokens-come-body": "The Hive network continually creates new digital tokens to reward content creators and curators. Some of the newly-created tokens are transferred to users who add value to platform by posting, commenting, and voting on other people's posts. The remainder is distributed to holders of HIVE POWER and the witnesses that secures the blockchain.
", + "where-tokens-come-body": "Мережа Hive постійно створює нові цифрові токени, щоб нагородити творців та кураторів вмісту. Деякі з новостворених токенів передаються користувачам, які додають цінності платформі, розміщуючи, коментуючи та голосуючи за дописи інших людей. Залишок розподіляється власникам HIVE СИЛИ та свідкам, які захищають блокчейн.
", "how-promotion-work-header": "Яким чином працює просування дописів?", - "how-promotion-work-body": "Promoting content on Ecency is very simple and easy. Ecency Points are used to promote content for 1, 2, 3, 7 or 14 days to get more exposure. Promoted posts are shuffled across the feeds to all users in mobile app, desktop app and website. There is no limit or restrictions, any post can be promoted to get more exposure and engagement. We hold right to remove posts from promotion list if it violates certain internet etiquette.
", + "how-promotion-work-body": "Сприяння вмісту на Ecency є найпростішим. Ecency бали використовуються для просування вмісту за 1, 2, 3, 7 чи 14 днів, щоб отримати більше впливу. Створені дописи перемішуються у стрічці, всім користувачам мобільного додатку, на Пк та на веб-сайті. Немає жодних обмежень, будь-який допис можна просувати для отримання більшої уваги аудиторії та їх залучення. Ми маємо право на видалення дописів зі списку просувань, якщо це порушує певний етикет Інтернету.
", "how-boosting-work-header": "Яким чином працює підсилення дописів?", "how-boosting-work-body": "Бали можна використовувати для підсилення вмісту (дописів та коментарів). Запити на підсилення переглядаються вручну нашими модераторами та кураторами, що може зайняти до 24 годин.
В рамках перевірки якості, ми можемо розглянути: а) Вміст - оригінальний вміст, б) Не виявлено шахрайства, макботами, спостерігачами вуликів (hivewatchers) чи будь-якими іншими чорними списками тощо. в) Користувач не входить до чорного списку Ecency через жорстоку поведінку.
Підсилення не гарантує курації, якщо вміст не буде курований протягом 24 годин. Бали повертаються.", "how-to-transfer-header": "Як переказувати токени блокчейну?", "how-to-transfer-body": "Після входу, ви знайдете сторінку Гаманець в заголовку веб-сайту, в додатку для комп'ютера чи на сторінці профілю, нижня панель навігації в мобільному додатку. На сторінці гаманця ви можете розпочати передачу будь-якого токена, який ви утримуєте для іншого користувача або обмінні рахунки, клацніть на стрілці поруч з вашим балансом і знайдіть операції переказу. Переказ є незворотній, тому що вони зареєстровані на блокчейні, обов'язково впевніться у правильності імені отримувача (повернення коштів є технічно неможливим).
", "how-see-rewards-header": "Як можна поглянути на винагороди за допис?", - "how-see-rewards-body": "In Wallet page (in top header on website and desktop app, bottom navigation bar on mobile app), you can see Curation rewards (the rewards earned for upvoting posts and comments) and Author rewards (the rewards earned by your own posts and comments)
You can also view the same information for other users by visiting their wallet profile.
", + "how-see-rewards-body": "У розділі Гаманець (у верхньому куті праворуч на веб-сайті чи додатку для комп'ютера або в нижній панелі навігації у мобільному додатку) ви можете побачити винагороди за курацію (винагороди, отримані за голосування дописів, коментарів) та винагороди автора (винагороди, отримані за ваші власні публікації дописів та коментарів)
Ви також можете переглянути ту саму інформацію для інших користувачів, відвідавши їхній профіль гаманця.
", "how-dhf-work-header": "Як працює ДВФ (DHF)?", "how-dhf-work-body": "Будь-хто може створити пропозицію і переконати спільноту проголосувати за неї, аби отримати фінансування. Перед створенням пропозиції, треба мати нормальний допис, він повинен бути опублікований у блокчейн і рекомендується зібрати відгуки перед створенням пропозиції. Створення пропозиції має більшу комісію за 10 HBD + 1 HBD за кожен день, це триває протягом 60 днів.
Коли пропозиція досягне певного порогу підрахованих голосів, вона почне отримувати кошти щогодини. Якщо пропозиція опускається нижче порогового значення, система зупинить фінансування цієї пропозиції. Ви можете голосувати за стільки пропозицій, за скільки забажаєте, і немає меж. Пропозицію не можна редагувати, але можна видалити/зняти, автором.
", "when-claim-rewards-header": "Коли я можу отримати винагороду?", @@ -789,18 +791,18 @@ "how-boost-account-header": "Як подати запит на підсилення обліковки?", "how-boost-account-body": "Якщо ваша обліковка має мало (ресурсних кредитів), ви можете запросити підсилення обліковки від Ecency. Ви отримаєте тимчасове делегування, яке повинно активізувати ваш обліковий запис, щоб ви могли виконувати більше дій в блокчейні. Ви можете знайти підсилення обліковки в опціях Балів.
", "what-spam-abuse-header": "Що вважається спамом чи зловживанням?", - "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Чи може гість писати дописи на сайті?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", - "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "how-to-contribute-header": "Як зробити свій внесок в Ecency?", + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { - "title": "Contributors", - "description": "These great people contributed in one way or another to Ecency, we would like to thank them all. If you want to join our team by contributing with Translation, Ideas, Development, Designing, Social awareness, feel free to join. To learn more read our FAQ." + "title": "Учасники перекладу", + "description": "Ці великі люди так чи інакше сприяли Ecency, ми хотіли б подякувати їм усім. Якщо ви хочете приєднатися до нашої команди, зробивши свій внесок у Переклад чи можливо маєте ідеї для розвитку, приклад Дизайн чи Соціальна обізнаність, сміливо приєднуйтесь. Щоб дізнатись більше, читайте наші ЧаПи." }, "context-menu": { "cut": "Вирізати", @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "Доступна нова версія", + "download": "Завантажити", "update": "Оновити", "dismiss": "Відхилити", "downloading": "Завантаження нової версії...", diff --git a/src/common/i18n/locales/vi-VN.json b/src/common/i18n/locales/vi-VN.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/vi-VN.json +++ b/src/common/i18n/locales/vi-VN.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/yo-NG.json b/src/common/i18n/locales/yo-NG.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/yo-NG.json +++ b/src/common/i18n/locales/yo-NG.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/zh-CN.json b/src/common/i18n/locales/zh-CN.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/zh-CN.json +++ b/src/common/i18n/locales/zh-CN.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/i18n/locales/zh-TW.json b/src/common/i18n/locales/zh-TW.json index d04d96c3a7a..9360e0f4fd8 100644 --- a/src/common/i18n/locales/zh-TW.json +++ b/src/common/i18n/locales/zh-TW.json @@ -181,7 +181,9 @@ "comment-entry-go-root": "View the full context", "comment-entry-go-parent": "View the direct parent", "show-history": "Show edit history", - "hidden-warning": "This post was hidden due to low ratings." + "hidden-warning": "This post was hidden due to low ratings.", + "address-copy": "Copy post address", + "address-copied": "Post address copied to clipboard." }, "edit-history": { "title": "Edit History", @@ -753,7 +755,7 @@ "page-title": "Ecency FAQ", "page-sub-title": "Table of Contents", "what-is-ecency-header": "What is Ecency?", - "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", + "what-is-ecency-body": "Ecency is a blockchain based social network - powered by Hive.
Ecency offers uncensored, free, limitless, rewarding platform for content creators.
Project was initiated and founded by @good-karma in August 2016 as an alternative social network. Since then project has grown to much larger group of contributors (translators, testers, developers, influencers, content creators and consumers) who helped to shape Ecency.
Ecency helps onboarding masses into Blockchain technology where users are getting paid for their time, resources and learn while enjoying social aspects of blockchain. Through ease of use, users not only learn but also become investors, innovators of the technology and community.
", "what-is-hive-header": "What is Hive blockchain?", "what-is-hive-body": "Hive is a blockchain that was designed to be fast, feeless, decentralized, uncensored platform for Web3.0 applications, with built-in features where stake holders can earn rewards by staking, curating, posting, playing games, trading - all without any middle man (decentralized). Tokens on Hive blockchain called HIVE, HIVE DOLLARS, HIVE POWER.
", "what-is-difference-header": "What's the difference between Ecency and other Hive interfaces?", @@ -763,9 +765,9 @@ "how-ecency-works-header": "How does Ecency work?", "how-ecency-works-body": "Ecency stores and reads data from the blockchain, and thus data is accessible and uncensored. Ecency rewards content creators with built-in incentive mechanism of blockchain, with tokens (HIVE, HIVE DOLLARS, HIVE POWER) as well as Points. Tokens can be purchased and sold in major cryptocurrency exchanges (e.g. Binance, Bittrex). Points could be utilized within platform and traded for goods, services.
", "how-to-join-header": "How to join Ecency?", - "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", + "how-to-join-body": "Go to https://ecency.com/signup?referral=ecency and create an account. After signup you will receive email with further instructions. Your password is your master key to your account. Please store it safely, if you loose your password, you ultimately loose access to your account and your funds. Accounts cannot be deactivated or deleted, account names can not be changed as well. The account along with all of its activity is permanently stored in the blockchain. Without password, accounts cannot be restored, store your keys safely.
", "how-to-signin-header": "How to sign in to Ecency?", - "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", + "how-to-signin-body": "You can sign-in to Ecency by using your Username and Master password or by using Active Private Keys. We take security very seriously, that's why we never store your private keys, on mobile app they are encrypted with extra PIN code of your choice, on website they are never stored. You can also use Hivesigner OAuth2 authentication service to easily login, manage and perform actions.
", "how-referrals-work-header": "How referral system work on Ecency?", "how-referrals-work-body": "Referral system is simple, you can invite your friends by adding your username in this link https://ecency.com/signup?referral=username and share it with your friends. Once your friends join Ecency and earn their first 250 Points, you will earn 100 Points. There is no limits on referrals and its reward.
", "what-is-points-header": "What are Ecency Points and how to use them?", @@ -791,11 +793,11 @@ "what-spam-abuse-header": "What is considered spam or abuse?", "what-spam-abuse-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", + "can-link-post-body": "All the content on our site is created by our users and we don't modify or able to add backlinks. You are free to contact author of the post or Signup to open your own blog and community, publish articles to create backlinks for free.
", "can-guest-post-header": "Is it possible to guest post on your website?", - "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", + "can-guest-post-body": "Posting on Ecency is simple and easy, Signup to open your own blog and community, start posting your content.
", "how-to-contribute-header": "How to contribute to the Ecency?", - "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" + "how-to-contribute-body": "Our awesome contributors helping us to shape Ecency. You can be part of this great movement, by joining our Translation team: Website, Mobile or by contributing with Ideas, Developing, Designing, Social media outreach skills. We try our best to support our contributors!
" } }, "contributors": { @@ -811,6 +813,7 @@ }, "updater": { "new-version-available": "New version is available", + "download": "Download", "update": "Update", "dismiss": "Dismiss", "downloading": "Downloading new version...", diff --git a/src/common/pages/_entry.scss b/src/common/pages/_entry.scss index 7db7ae51090..999bc494076 100644 --- a/src/common/pages/_entry.scss +++ b/src/common/pages/_entry.scss @@ -21,7 +21,10 @@ .the-entry { margin: 0 auto 90px auto; width: 100%; - padding: 0 10px; + + @media (min-width: $sm-break) { + padding: 0 10px; + } @media (min-width: $md-break) { padding: 0; @@ -154,8 +157,13 @@ margin-right: 6px; .user-avatar { - width: 40px; - height: 40px; + width: 24px; + height: 24px; + + @media (min-width: $sm-break) { + width: 40px; + height: 40px; + } } } @@ -424,7 +432,7 @@ } &:hover { - color: $dark-sky-blue; + opacity: 0.7 !important; } } } diff --git a/src/common/pages/community.tsx b/src/common/pages/community.tsx index c7626f4296c..65d353894f8 100644 --- a/src/common/pages/community.tsx +++ b/src/common/pages/community.tsx @@ -189,7 +189,7 @@ class CommunityPage extends Component